forked from OSchip/llvm-project
Temporarily disable caching of ABI results; this is going horribly
wrong in some cases. llvm-svn: 63780
This commit is contained in:
parent
18f8ff62a3
commit
fb5fdf1f14
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue