diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-12-10 06:39:02 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-12-10 06:39:02 +0000 |
commit | ccd14566e2df8335e5c9bfc75ca6cf31673db6b0 (patch) | |
tree | 5f051a876e90cc72e2d0f67b3a40c40003448f09 /llvm/lib/Transforms/Utils/Local.cpp | |
parent | d5af8ae17fae996749658e9be46e8122798760e8 (diff) | |
download | llvm-ccd14566e2df8335e5c9bfc75ca6cf31673db6b0.zip llvm-ccd14566e2df8335e5c9bfc75ca6cf31673db6b0.tar.gz llvm-ccd14566e2df8335e5c9bfc75ca6cf31673db6b0.tar.bz2 |
Add arg_begin() and arg_end() to CallInst and InvokeInst; NFCI
- This simplifies the CallSite class, arg_begin / arg_end are now
simple wrapper getters.
- In several places, we were creating CallSite instances solely to call
arg_begin and arg_end. With this change, that's no longer required.
llvm-svn: 255226
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/Local.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp index 19122dd..391ed68 100644 --- a/llvm/lib/Transforms/Utils/Local.cpp +++ b/llvm/lib/Transforms/Utils/Local.cpp @@ -1210,8 +1210,7 @@ static void changeToUnreachable(Instruction *I, bool UseLLVMTrap) { /// changeToCall - Convert the specified invoke into a normal call. static void changeToCall(InvokeInst *II) { - CallSite CS(II); - SmallVector<Value*, 8> Args(CS.arg_begin(), CS.arg_end()); + SmallVector<Value*, 8> Args(II->arg_begin(), II->arg_end()); SmallVector<OperandBundleDef, 1> OpBundles; II->getOperandBundlesAsDefs(OpBundles); CallInst *NewCall = CallInst::Create(II->getCalledValue(), Args, OpBundles, |