diff dmd/statement.c @ 136:0e28624814e8 trunk

[svn r140] did a lot of the work towards being able to pass multiple modules on the command line. not complete yet though
author lindquist
date Thu, 17 Jan 2008 03:15:12 +0100
parents 288fe1029e1f
children 0ab29b838084
line wrap: on
line diff
--- a/dmd/statement.c	Mon Jan 14 23:09:55 2008 +0100
+++ b/dmd/statement.c	Thu Jan 17 03:15:12 2008 +0100
@@ -1431,7 +1431,7 @@
 		    fdapply = FuncDeclaration::genCfunc(Type::tindex, "_aaApply2");
 		else
 		    fdapply = FuncDeclaration::genCfunc(Type::tindex, "_aaApply");
-        fdapply->llvmRunTimeHack = true;
+        fdapply->runTimeHack = true;
 		ec = new VarExp(0, fdapply);
 		Expressions *exps = new Expressions();
 		exps->push(aggr);
@@ -1473,7 +1473,7 @@
 		int j = sprintf(fdname, "_aApply%s%.*s%d", r, 2, fntab[flag], dim);
 		assert(j < sizeof(fdname));
 		fdapply = FuncDeclaration::genCfunc(Type::tindex, fdname);
-        fdapply->llvmRunTimeHack = true;
+        fdapply->runTimeHack = true;
 
 		ec = new VarExp(0, fdapply);
 		Expressions *exps = new Expressions();