Don't need to check the last argument since it'll always be bool. We also
authorEric Christopher <echristo@apple.com>
Tue, 2 Feb 2010 00:51:45 +0000 (00:51 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 2 Feb 2010 00:51:45 +0000 (00:51 +0000)
don't use TargetData here.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95040 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SimplifyLibCalls.cpp

index e9dbb324236f0d5af0a460e852f98b2b903937f5..db6ff29200fb4a341e9f9141076822e1a06749c1 100644 (file)
@@ -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));