comparison dmd/statement.c @ 144:a27941d00351 trunk

[svn r149] fixed: a bunch of D-style variadics problems. fixed: GotoDefaultStatement implemented. fixed: some other minor bugs.
author lindquist
date Sat, 26 Jan 2008 17:13:22 +0100
parents 0ab29b838084
children 8f704cb9969b
comparison
equal deleted inserted replaced
143:336ec4f4bbb3 144:a27941d00351
1953 condition = c; 1953 condition = c;
1954 body = b; 1954 body = b;
1955 sdefault = NULL; 1955 sdefault = NULL;
1956 cases = NULL; 1956 cases = NULL;
1957 hasNoDefault = 0; 1957 hasNoDefault = 0;
1958 // LLVMDC
1959 defaultBB = NULL;
1958 } 1960 }
1959 1961
1960 Statement *SwitchStatement::syntaxCopy() 1962 Statement *SwitchStatement::syntaxCopy()
1961 { 1963 {
1962 SwitchStatement *s = new SwitchStatement(loc, 1964 SwitchStatement *s = new SwitchStatement(loc,