1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00

fix comment

llvm-svn: 119948
This commit is contained in:
Chris Lattner 2010-11-21 19:05:34 +00:00
parent dd03f96698
commit 621c62e20d

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;