aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/Local.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2019-02-11 07:51:44 +0000
committerChandler Carruth <chandlerc@gmail.com>2019-02-11 07:51:44 +0000
commit751d95fb9b3d66731eca0a17bcd7392ca96bb8d9 (patch)
tree7c1a2c76efcb97119c0ce19712af9e18f89f98b0 /llvm/lib/Transforms/Utils/Local.cpp
parent3160734af13ba9797c82ce98be75b63db0c37c50 (diff)
downloadllvm-751d95fb9b3d66731eca0a17bcd7392ca96bb8d9.zip
llvm-751d95fb9b3d66731eca0a17bcd7392ca96bb8d9.tar.gz
llvm-751d95fb9b3d66731eca0a17bcd7392ca96bb8d9.tar.bz2
[CallSite removal] Migrate ConstantFolding APIs and implementation to
`CallBase`. Users have been updated. You can see how to update any out-of-tree usages: pass `cast<CallBase>(CS.getInstruction())`. llvm-svn: 353661
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/Local.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp
index b7e6966..f10bc65 100644
--- a/llvm/lib/Transforms/Utils/Local.cpp
+++ b/llvm/lib/Transforms/Utils/Local.cpp
@@ -415,8 +415,8 @@ bool llvm::wouldInstructionBeTriviallyDead(Instruction *I,
if (Constant *C = dyn_cast<Constant>(CI->getArgOperand(0)))
return C->isNullValue() || isa<UndefValue>(C);
- if (CallSite CS = CallSite(I))
- if (isMathLibCallNoop(CS, TLI))
+ if (auto *Call = dyn_cast<CallBase>(I))
+ if (isMathLibCallNoop(Call, TLI))
return true;
return false;