diff dmd/statement.h @ 37:77cdca8c210f trunk

[svn r41] new'd dynamic arrays are now initialized with the element type's default initializer. initial label/goto support.
author lindquist
date Wed, 10 Oct 2007 03:38:24 +0200
parents c53b6e3fe49a
children fd32135dca3e
line wrap: on
line diff
--- a/dmd/statement.h	Tue Oct 09 07:51:13 2007 +0200
+++ b/dmd/statement.h	Wed Oct 10 03:38:24 2007 +0200
@@ -51,7 +51,8 @@
 
 namespace llvm
 {
-    class Value;
+    class Value;
+    class BasicBlock;
 }
 
 // Back end
@@ -714,7 +715,9 @@
 
     Statement *inlineScan(InlineScanState *iss);
 
-    void toIR(IRState *irs);
+    void toIR(IRState *irs);
+    
+    llvm::BasicBlock* llvmBB;
 };
 
 struct LabelDsymbol : Dsymbol