[cfe-commits] r63780 - /cfe/trunk/lib/CodeGen/CGCall.cpp
Daniel Dunbar
daniel at zuster.org
Wed Feb 4 13:36:22 PST 2009
Author: ddunbar
Date: Wed Feb 4 15:36:22 2009
New Revision: 63780
URL: http://llvm.org/viewvc/llvm-project?rev=63780&view=rev
Log:
Temporarily disable caching of ABI results; this is going horribly
wrong in some cases.
Modified:
cfe/trunk/lib/CodeGen/CGCall.cpp
Modified: cfe/trunk/lib/CodeGen/CGCall.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCall.cpp?rev=63780&r1=63779&r2=63780&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGCall.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGCall.cpp Wed Feb 4 15:36:22 2009
@@ -100,7 +100,9 @@
// Construct the function info.
FI = new CGFunctionInfo(ResTy, ArgTys);
- FunctionInfos.InsertNode(FI, InsertPos);
+
+ // FIXME: This is leaking like a sieve; please fix me.
+ // FunctionInfos.InsertNode(FI, InsertPos);
// Compute ABI information.
getABIInfo().computeInfo(*FI, getContext());
More information about the cfe-commits
mailing list