[llvm] r263430 - [CVP] Replace nonnegative with positive, per Philip's request. NFC.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 14 06:48:01 PDT 2016


Author: mcrosier
Date: Mon Mar 14 08:48:00 2016
New Revision: 263430

URL: http://llvm.org/viewvc/llvm-project?rev=263430&view=rev
Log:
[CVP] Replace nonnegative with positive, per Philip's request. NFC.

Modified:
    llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp?rev=263430&r1=263429&r2=263430&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp Mon Mar 14 08:48:00 2016
@@ -341,8 +341,8 @@ bool CorrelatedValuePropagation::process
 
 /// See if LazyValueInfo's ability to exploit edge conditions, or range
 /// information is sufficient to prove the both operands of this SDiv are
-/// nonnegative.  If this is the case, replace the SDiv with a UDiv. Even for
-/// local conditions, this can sometimes prove conditions instcombine can't by
+/// positive.  If this is the case, replace the SDiv with a UDiv. Even for local
+/// conditions, this can sometimes prove conditions instcombine can't by
 /// exploiting range information.
 bool CorrelatedValuePropagation::processSDiv(BinaryOperator *SDI) {
   if (SDI->getType()->isVectorTy())




More information about the llvm-commits mailing list