From: Gabor Greif Date: Wed, 30 Jun 2010 12:39:23 +0000 (+0000) Subject: use CallSite::arg_end instead of CallInst::op_end X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d0fcab915441c0748667ef981ef85989abd28b11;p=oota-llvm.git use CallSite::arg_end instead of CallInst::op_end git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107276 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/IntrinsicLowering.cpp b/lib/CodeGen/IntrinsicLowering.cpp index b5951f1a087..03ae214ae7d 100644 --- a/lib/CodeGen/IntrinsicLowering.cpp +++ b/lib/CodeGen/IntrinsicLowering.cpp @@ -375,7 +375,7 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { case Intrinsic::siglongjmp: { // Insert the call to abort - ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(), + ReplaceCallWith("abort", CI, CS.arg_end(), CS.arg_end(), Type::getVoidTy(Context)); break; }