mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
* 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
This commit is contained in:
parent
77d29b1f62
commit
045b3f7bf1
@ -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...
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user