diff dmd/declaration.c @ 40:8b0e809563df trunk

[svn r44] Lots of bug fixes. New array literal support New array ~= operator support (for single element) New with statement support More...
author lindquist
date Fri, 19 Oct 2007 07:43:21 +0200
parents 788401029ecf
children 6fcc08a4d406
line wrap: on
line diff
--- a/dmd/declaration.c	Wed Oct 10 06:21:31 2007 +0200
+++ b/dmd/declaration.c	Fri Oct 19 07:43:21 2007 +0200
@@ -31,7 +31,8 @@
     type = NULL;
     storage_class = STCundefined;
     protection = PROTundefined;
-    linkage = LINKdefault;
+    linkage = LINKdefault;
+    llvmTouched = false;
 }
 
 void Declaration::semantic(Scope *sc)