diff dmd/statement.c @ 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 4648206ca213
children fd32135dca3e
line wrap: on
line diff
--- a/dmd/statement.c	Tue Oct 09 07:51:13 2007 +0200
+++ b/dmd/statement.c	Wed Oct 10 03:38:24 2007 +0200
@@ -3464,7 +3464,8 @@
     this->statement = statement;
     this->tf = NULL;
     this->lblock = NULL;
-    this->isReturnLabel = 0;
+    this->isReturnLabel = 0;
+    this->llvmBB = NULL;
 }
 
 Statement *LabelStatement::syntaxCopy()