diff gen/d-asm-i386.h @ 468:45a67b6f1310

Removed the 'needsstorage' thing from Dsymbol. Arguments are not always given storage when applicable. This is not longer treat specially in this regard. Code for accessing nested variables and contexts rewritten. Probably more. Fairly well tested.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 04 Aug 2008 02:59:34 +0200
parents cc40db549aea
children dc8b8b7ea0c1
line wrap: on
line diff
--- a/gen/d-asm-i386.h	Sun Aug 03 16:59:28 2008 +0200
+++ b/gen/d-asm-i386.h	Mon Aug 04 02:59:34 2008 +0200
@@ -2037,9 +2037,6 @@
 	    }
 	} else if (exp->op == TOKvar) {
 	    VarDeclaration * v = ((VarExp *) exp)->var->isVarDeclaration();
-        if (v) {
-            v->needsStorage = true;
-        }
 
 	    if (v && v->storage_class & STCfield) {
 		operand->constDisplacement += v->offset;