comparison gen/asmstmt.cpp @ 336:aaade6ded589 trunk

[svn r357] Merged DMD 1.033
author lindquist
date Sat, 12 Jul 2008 19:38:31 +0200
parents 553f844ae5b9
children 44daf304421c
comparison
equal deleted inserted replaced
335:17b844102023 336:aaade6ded589
161 return this; 161 return this;
162 162
163 AsmProcessor ap(sc, this); 163 AsmProcessor ap(sc, this);
164 ap.run(); 164 ap.run();
165 return this; 165 return this;
166 }
167
168 int AsmStatement::blockExit()
169 {
170 //printf("AsmStatement::blockExit(%p)\n", this);
171 return BEfallthru | BEreturn | BEgoto | BEhalt;
166 } 172 }
167 173
168 void 174 void
169 AsmStatement::toIR(IRState * irs) 175 AsmStatement::toIR(IRState * irs)
170 { 176 {