diff dmd/statement.h @ 299:df8a7b8d5929 trunk

[svn r320] Begun work on branches out of asm blocks. Unfinished.
author ChristianK
date Tue, 24 Jun 2008 21:38:23 +0200
parents 88252a1af660
children bef811104734
line wrap: on
line diff
--- a/dmd/statement.h	Tue Jun 24 17:24:55 2008 +0200
+++ b/dmd/statement.h	Tue Jun 24 21:38:23 2008 +0200
@@ -791,6 +791,10 @@
     virtual AsmStatement *isAsmStatement() { return this; }
 
     void toIR(IRState *irs);
+
+    // LLVMDC
+    // non-zero if this is a branch, contains the target
+    Identifier* isBranchToLabel;
 };
 
 struct AsmBlockStatement : CompoundStatement