comparison dmd/parse.c @ 232:092468448d25 trunk

[svn r248] Fixed: labels in inline asm block now work for the normal case. Fixed: inline asm blocks are now emitted as a single asm entity.
author lindquist
date Sun, 08 Jun 2008 06:15:51 +0200
parents 5acec6b2eef8
children aaade6ded589
comparison
equal deleted inserted replaced
231:61aa721a6b7f 232:092468448d25
3184 nextToken(); 3184 nextToken();
3185 continue; 3185 continue;
3186 } 3186 }
3187 break; 3187 break;
3188 } 3188 }
3189 s = new CompoundStatement(loc, statements); 3189 s = new AsmBlockStatement(loc, statements);
3190 nextToken(); 3190 nextToken();
3191 break; 3191 break;
3192 } 3192 }
3193 3193
3194 default: 3194 default: