mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 16:17:17 +00:00
Delete "StripScalars" argument to cloneInto method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -160,7 +160,6 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
|
|||||||
// The clone call may invalidate any of the vectors in the data
|
// The clone call may invalidate any of the vectors in the data
|
||||||
// structure graph. Strip locals and don't copy the list of callers
|
// structure graph. Strip locals and don't copy the list of callers
|
||||||
DSNodeHandle RetVal = Graph->cloneInto(GI, OldValMap, OldNodeMap,
|
DSNodeHandle RetVal = Graph->cloneInto(GI, OldValMap, OldNodeMap,
|
||||||
/*StripScalars*/ true,
|
|
||||||
/*StripAllocas*/ true);
|
/*StripAllocas*/ true);
|
||||||
|
|
||||||
// Resolve the arguments in the call to the actual values...
|
// Resolve the arguments in the call to the actual values...
|
||||||
|
@@ -176,7 +176,6 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) {
|
|||||||
// Strip scalars but not allocas since they are alive in callee.
|
// Strip scalars but not allocas since they are alive in callee.
|
||||||
//
|
//
|
||||||
DSNodeHandle RetVal = Graph->cloneInto(CG, OldValMap, OldNodeMap,
|
DSNodeHandle RetVal = Graph->cloneInto(CG, OldValMap, OldNodeMap,
|
||||||
/*StripScalars*/ true,
|
|
||||||
/*StripAllocas*/ false);
|
/*StripAllocas*/ false);
|
||||||
ResolveCallSite(*Graph, DSCallSite(CallSiteInCG, OldNodeMap));
|
ResolveCallSite(*Graph, DSCallSite(CallSiteInCG, OldNodeMap));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user