diff options
| author | Eric Christopher <echristo@apple.com> | 2010-02-02 00:51:45 +0000 | 
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-02-02 00:51:45 +0000 | 
| commit | 14dfc3f6df783673d8bc8eacd8aaa5095bd9651d (patch) | |
| tree | c570f3db676a4f958761e134e70f35b46eff81ef /llvm/lib/Transforms | |
| parent | 916dbf114a656840ecab351995b05109388b71e7 (diff) | |
| download | bcm5719-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')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | 6 | 
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));  | 

