diff options
-rw-r--r-- | include/llvm/Instructions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 373e4e3bec..dbeb9e12ee 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -1100,11 +1100,11 @@ public: } /// getCalledValue - Get a pointer to the function that is invoked by this - /// instruction + /// instruction. const Value *getCalledValue() const { return Op<0>(); } Value *getCalledValue() { return Op<0>(); } - /// setCalledFunction - Set the function called + /// setCalledFunction - Set the function called. void setCalledFunction(Value* Fn) { Op<0>() = Fn; } |