diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-06 06:18:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-06 06:18:56 +0000 |
commit | 4268c93b0082509f96dea6e3934c6306ab7da2ee (patch) | |
tree | 8b5dc1e85b544f51f5f9c39671feeea0151f5a8c | |
parent | ef5af99195193993ff8563c0cc332e5c5dd261c9 (diff) |
Remove stripscalars argument to cloneInto
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4561 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/DSGraph.h | 2 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DSGraph.h b/include/llvm/Analysis/DSGraph.h index 278576f8ad..3891c0e70d 100644 --- a/include/llvm/Analysis/DSGraph.h +++ b/include/llvm/Analysis/DSGraph.h @@ -127,7 +127,7 @@ public: DSNodeHandle cloneInto(const DSGraph &G, std::map<Value*, DSNodeHandle> &OldValMap, std::map<const DSNode*, DSNode*> &OldNodeMap, - bool StripScalars = false, bool StripAllocas = false); + bool StripAllocas = false); #if 0 // cloneGlobalInto - Clone the given global node (or the node for the given diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index 278576f8ad..3891c0e70d 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -127,7 +127,7 @@ public: DSNodeHandle cloneInto(const DSGraph &G, std::map<Value*, DSNodeHandle> &OldValMap, std::map<const DSNode*, DSNode*> &OldNodeMap, - bool StripScalars = false, bool StripAllocas = false); + bool StripAllocas = false); #if 0 // cloneGlobalInto - Clone the given global node (or the node for the given |