[pure-lang-svn] SF.net SVN: pure-lang: [139] pure/trunk/interpreter.cc
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-05-27 04:32:42
|
Revision: 139 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=139&view=rev Author: agraef Date: 2008-05-26 21:32:49 -0700 (Mon, 26 May 2008) Log Message: ----------- Remove bogus tail call flag on calls to pure_throw. Modified Paths: -------------- pure/trunk/interpreter.cc Modified: pure/trunk/interpreter.cc =================================================================== --- pure/trunk/interpreter.cc 2008-05-27 04:28:33 UTC (rev 138) +++ pure/trunk/interpreter.cc 2008-05-27 04:32:49 UTC (rev 139) @@ -4010,8 +4010,7 @@ else args.push_back(NullExprPtr); Env& e = act_env(); - CallInst *v = e.CreateCall(f, args); - v->setTailCall(); + e.CreateCall(f, args); // add a ret instruction to terminate the current block e.builder.CreateRet(NullExprPtr); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |