aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2008-06-05 08:04:58 +0000
committerMatthijs Kooijman <matthijs@stdin.nl>2008-06-05 08:04:58 +0000
commit045b3f7bf1f136f609d64e50b3737b6eccae1ed8 (patch)
tree0bf00769aef084e4460fcc3b01cc79cc8a6b7e1b
parent77d29b1f6245f401a39aadacebc2af951a32589a (diff)
downloadexternal_llvm-045b3f7bf1f136f609d64e50b3737b6eccae1ed8.tar.gz
external_llvm-045b3f7bf1f136f609d64e50b3737b6eccae1ed8.tar.bz2
external_llvm-045b3f7bf1f136f609d64e50b3737b6eccae1ed8.zip
* Make CallSite::hasArgument const and let it take a const parameter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51989 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/CallSite.h2
-rw-r--r--lib/VMCore/Instructions.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 513269fb5f..9a6c00872b 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -132,7 +132,7 @@ public:
/// hasArgument - Returns true if this CallSite passes the given Value* as an
/// argument to the called function.
- bool hasArgument(Value *Arg);
+ bool hasArgument(const Value *Arg) const;
/// arg_iterator - The type of iterator to use when looping over actual
/// arguments at this call site...
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp
index d78926742c..f66076d24e 100644
--- a/lib/VMCore/Instructions.cpp
+++ b/lib/VMCore/Instructions.cpp
@@ -91,7 +91,7 @@ void CallSite::setDoesNotThrow(bool doesNotThrow) {
cast<InvokeInst>(I)->setDoesNotThrow(doesNotThrow);
}
-bool CallSite::hasArgument(Value *Arg) {
+bool CallSite::hasArgument(const Value *Arg) const {
for (arg_iterator AI = this->arg_begin(), E = this->arg_end(); AI != E; ++AI)
if (AI->get() == Arg)
return true;