aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/CallSite.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index f7d8db6086..7e95e5db7b 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -114,6 +114,15 @@ public:
return *(arg_begin()+ArgNo);
}
+ void setArgument(unsigned ArgNo, Value* newVal) {
+ assert(I && "Not a call or invoke instruction!");
+ assert(arg_begin() + ArgNo < arg_end() && "Argument # out of range!");
+ if (I->getOpcode() == Instruction::Call)
+ I->setOperand(ArgNo+1, newVal); // Skip Function
+ else
+ I->setOperand(ArgNo+3, newVal); // Skip Function, BB, BB
+ }
+
/// arg_iterator - The type of iterator to use when looping over actual
/// arguments at this call site...
typedef User::op_iterator arg_iterator;