diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-30 05:27:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-30 05:27:05 +0000 |
commit | 332f0aa425c3ac240e02c455beaae2ee5ae58d5c (patch) | |
tree | bb49ed1169daf04654bfc5c6378679830231cf40 | |
parent | 7b1ceaa40bede9e5ef2e847bcec8fe5bef44434e (diff) |
Be more const correct
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7004 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 bc0d15f427..c08d404cea 100644 --- a/include/llvm/Analysis/DSGraph.h +++ b/include/llvm/Analysis/DSGraph.h @@ -211,7 +211,7 @@ public: /// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca /// markers are removed from nodes. /// - void mergeInGraph(DSCallSite &CS, Function &F, const DSGraph &Graph, + void mergeInGraph(const DSCallSite &CS, Function &F, const DSGraph &Graph, unsigned CloneFlags); // Methods for checking to make sure graphs are well formed... diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index bc0d15f427..c08d404cea 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -211,7 +211,7 @@ public: /// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca /// markers are removed from nodes. /// - void mergeInGraph(DSCallSite &CS, Function &F, const DSGraph &Graph, + void mergeInGraph(const DSCallSite &CS, Function &F, const DSGraph &Graph, unsigned CloneFlags); // Methods for checking to make sure graphs are well formed... |