fix comment
authorChris Lattner <sabre@nondot.org>
Sun, 21 Nov 2010 19:05:34 +0000 (19:05 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 21 Nov 2010 19:05:34 +0000 (19:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119948 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/MemCpyOptimizer.cpp

index edb20381e1601c4e3575c48b7dfbde0781b26a35..8aeaa9971a129bb5d3194350cd768a22cbc7de29 100644 (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;