summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-02-02 00:51:45 +0000
committerEric Christopher <echristo@apple.com>2010-02-02 00:51:45 +0000
commit14dfc3f6df783673d8bc8eacd8aaa5095bd9651d (patch)
treec570f3db676a4f958761e134e70f35b46eff81ef /llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
parent916dbf114a656840ecab351995b05109388b71e7 (diff)
downloadbcm5719-llvm-14dfc3f6df783673d8bc8eacd8aaa5095bd9651d.tar.gz
bcm5719-llvm-14dfc3f6df783673d8bc8eacd8aaa5095bd9651d.zip
Don't need to check the last argument since it'll always be bool. We also
don't use TargetData here. llvm-svn: 95040
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
index e9dbb324236..db6ff29200f 100644
--- a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
+++ b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
@@ -1203,14 +1203,10 @@ struct MemMoveChkOpt : public LibCallOptimization {
struct StrCpyChkOpt : public LibCallOptimization {
virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
- // These optimizations require TargetData.
- if (!TD) return 0;
-
const FunctionType *FT = Callee->getFunctionType();
if (FT->getNumParams() != 3 || FT->getReturnType() != FT->getParamType(0) ||
!isa<PointerType>(FT->getParamType(0)) ||
- !isa<PointerType>(FT->getParamType(1)) ||
- !isa<IntegerType>(FT->getParamType(2)))
+ !isa<PointerType>(FT->getParamType(1)))
return 0;
ConstantInt *SizeCI = dyn_cast<ConstantInt>(CI->getOperand(3));
OpenPOWER on IntegriCloud