diff --git a/include/llvm/iTerminators.h b/include/llvm/iTerminators.h index c414283f7ad..8feeac5e917 100644 --- a/include/llvm/iTerminators.h +++ b/include/llvm/iTerminators.h @@ -202,13 +202,13 @@ public: virtual Instruction *clone() const { return new InvokeInst(*this); } - // getCalledMethod - Return the method called, or null if this is an indirect - // method invocation... + // getCalledFunction - Return the function called, or null if this is an + // indirect function invocation... // - inline const Function *getCalledMethod() const { + inline const Function *getCalledFunction() const { return dyn_cast(Operands[0].get()); } - inline Method *getCalledMethod() { + inline Method *getCalledFunction() { return dyn_cast(Operands[0].get()); }