diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-10-21 19:50:29 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-10-21 19:50:29 +0000 |
| commit | 155fffd3505f31a2e1c99b8f714ae495dcd93856 (patch) | |
| tree | 5edec69ce3c65a29c1d632b5cabe8a9da2ba31d7 /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | |
| parent | f76087336f5b1e954b9d036dc495ff39616f4398 (diff) | |
| download | bcm5719-llvm-155fffd3505f31a2e1c99b8f714ae495dcd93856.tar.gz bcm5719-llvm-155fffd3505f31a2e1c99b8f714ae495dcd93856.zip | |
Delete unused arguments to DSGraph::cloneInto method
llvm-svn: 4253
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
| -rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index 73786c96c5e..6d1a575e6b7 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -157,9 +157,7 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { // structure graph. Strip locals and don't copy the list of callers DSNodeHandle RetVal = Graph->cloneInto(GI, OldValMap, OldNodeMap, /*StripScalars*/ true, - /*StripAllocas*/ true, - /*CopyCallers*/ false, - /*CopyOrigCalls*/ false); + /*StripAllocas*/ true); // Resolve the arguments in the call to the actual values... ResolveArguments(Call, FI, OldValMap); |

