Be more const correct

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7004 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2003-06-30 05:27:05 +00:00
parent 7b1ceaa40b
commit 332f0aa425
2 changed files with 2 additions and 2 deletions

View File

@@ -211,7 +211,7 @@ public:
/// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca /// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca
/// markers are removed from nodes. /// 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); unsigned CloneFlags);
// Methods for checking to make sure graphs are well formed... // Methods for checking to make sure graphs are well formed...

View File

@@ -211,7 +211,7 @@ public:
/// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca /// the graph. If the StripAlloca's argument is 'StripAllocaBit' then Alloca
/// markers are removed from nodes. /// 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); unsigned CloneFlags);
// Methods for checking to make sure graphs are well formed... // Methods for checking to make sure graphs are well formed...