diff gen/functions.cpp @ 215:a58d8f4b84df trunk

[svn r231] Changed: warnings are no longer treated as an error. Added some comments and cleaned up CallExp::toElem a tiny bit. Fixed: struct literals always reported inplace assignment even if they allocated a temporary. Fixed: passing stuff to a D-style vararg which did inplace assignment was generated suboptimal code.
author lindquist
date Tue, 03 Jun 2008 13:51:09 +0200
parents 7816aafeea3c
children 0806379a5eca
line wrap: on
line diff
--- a/gen/functions.cpp	Fri May 30 19:32:56 2008 +0200
+++ b/gen/functions.cpp	Tue Jun 03 13:51:09 2008 +0200
@@ -799,7 +799,9 @@
     Logger::println("DtoVariadicArgument");
     LOG_SCOPE;
     DVarValue* vv = new DVarValue(argexp->type, dst, true);
+    gIR->exps.push_back(IRExp(NULL, argexp, vv));
     DtoAssign(vv, argexp->toElem(gIR));
+    gIR->exps.pop_back();
 }
 
 //////////////////////////////////////////////////////////////////////////////////////////