Temporarily disable caching of ABI results; this is going horribly

wrong in some cases.

llvm-svn: 63780
This commit is contained in:
Daniel Dunbar 2009-02-04 21:36:22 +00:00
parent 18f8ff62a3
commit fb5fdf1f14
1 changed files with 3 additions and 1 deletions

View File

@ -100,7 +100,9 @@ const CGFunctionInfo &CodeGenTypes::getFunctionInfo(QualType ResTy,
// 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());