From 332f0aa425c3ac240e02c455beaae2ee5ae58d5c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 30 Jun 2003 05:27:05 +0000 Subject: [PATCH] Be more const correct git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7004 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DSGraph.h | 2 +- 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 bc0d15f427f..c08d404cea9 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 bc0d15f427f..c08d404cea9 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...