summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/IntrinsicLowering.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-06-30 12:39:23 +0000
committerGabor Greif <ggreif@gmail.com>2010-06-30 12:39:23 +0000
commit3390e746fae14c099a096340e3446fdfb5a61ece (patch)
tree2d49e4ffe8d1352164655b325e585b906382da5b /llvm/lib/CodeGen/IntrinsicLowering.cpp
parent3abd881bea424a12e7f8ded778447833b867831a (diff)
downloadbcm5719-llvm-3390e746fae14c099a096340e3446fdfb5a61ece.tar.gz
bcm5719-llvm-3390e746fae14c099a096340e3446fdfb5a61ece.zip
use CallSite::arg_end instead of CallInst::op_end
llvm-svn: 107276
Diffstat (limited to 'llvm/lib/CodeGen/IntrinsicLowering.cpp')
-rw-r--r--llvm/lib/CodeGen/IntrinsicLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/IntrinsicLowering.cpp b/llvm/lib/CodeGen/IntrinsicLowering.cpp
index b5951f1a087..03ae214ae7d 100644
--- a/llvm/lib/CodeGen/IntrinsicLowering.cpp
+++ b/llvm/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;
}
OpenPOWER on IntegriCloud