1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Delete "StripScalars" argument to cloneInto method

llvm-svn: 4560
This commit is contained in:
Chris Lattner 2002-11-06 06:16:30 +00:00
parent b49552a328
commit 304e29942d
2 changed files with 0 additions and 2 deletions

View File

@ -160,7 +160,6 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
// The clone call may invalidate any of the vectors in the data
// structure graph. Strip locals and don't copy the list of callers
DSNodeHandle RetVal = Graph->cloneInto(GI, OldValMap, OldNodeMap,
/*StripScalars*/ true,
/*StripAllocas*/ true);
// Resolve the arguments in the call to the actual values...

View File

@ -176,7 +176,6 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) {
// Strip scalars but not allocas since they are alive in callee.
//
DSNodeHandle RetVal = Graph->cloneInto(CG, OldValMap, OldNodeMap,
/*StripScalars*/ true,
/*StripAllocas*/ false);
ResolveCallSite(*Graph, DSCallSite(CallSiteInCG, OldNodeMap));
}