aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
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
commit11225dd710d5cea81be4a77e56290eff6ce71863 (patch)
tree3341b276f414a4c7336246c7b2d7112eff1ac9a0 /lib/Transforms
parent3a8bb736906877dd7f251fe39ee6720d3cab8b4a (diff)
downloadexternal_llvm-11225dd710d5cea81be4a77e56290eff6ce71863.zip
external_llvm-11225dd710d5cea81be4a77e56290eff6ce71863.tar.gz
external_llvm-11225dd710d5cea81be4a77e56290eff6ce71863.tar.bz2
Don't need to check the last argument since it'll always be bool. We also
don't use TargetData here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/SimplifyLibCalls.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/lib/Transforms/Scalar/SimplifyLibCalls.cpp
index e9dbb32..db6ff29 100644
--- a/lib/Transforms/Scalar/SimplifyLibCalls.cpp
+++ b/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));