fix comment

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119948 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-11-21 19:05:34 +00:00
parent 8bc1e45295
commit 6ffdd45d86

View File

@ -834,7 +834,6 @@ bool MemCpyOpt::processByValArgument(CallSite CS, unsigned ArgNo) {
return false;
// The length of the memcpy must be larger or equal to the size of the byval.
// must be larger than the following one.
ConstantInt *C1 = dyn_cast<ConstantInt>(MDep->getLength());
if (C1 == 0 || C1->getValue().getZExtValue() < ByValSize)
return false;