diff options
Diffstat (limited to 'llvm/lib/VMCore/Instructions.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instructions.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp index e8ac392d71f..a0636592180 100644 --- a/llvm/lib/VMCore/Instructions.cpp +++ b/llvm/lib/VMCore/Instructions.cpp @@ -33,7 +33,9 @@ using namespace llvm; User::op_iterator CallSite::getCallee() const { Instruction *II(getInstruction()); return isCall() - ? cast<CallInst>(II)->op_begin() + ? (CallInst::ArgOffset + ? cast</*FIXME: CallInst*/User>(II)->op_begin() + : cast</*FIXME: CallInst*/User>(II)->op_end() - 1) : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Function } |