diff options
| author | Chad Rosier <mcrosier@codeaurora.org> | 2016-03-14 13:48:00 +0000 |
|---|---|---|
| committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-03-14 13:48:00 +0000 |
| commit | 00bd82cadec3a23fa524344366baa239877de6e7 (patch) | |
| tree | 84414773619564747ff1be72adadd8582739672f | |
| parent | 12f2de1a1fd0a341bb7b2d56c3f1a34967d395c9 (diff) | |
| download | bcm5719-llvm-00bd82cadec3a23fa524344366baa239877de6e7.tar.gz bcm5719-llvm-00bd82cadec3a23fa524344366baa239877de6e7.zip | |
[CVP] Replace nonnegative with positive, per Philip's request. NFC.
llvm-svn: 263430
| -rw-r--r-- | llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp b/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp index 046d3791a19..8f30d5b51a4 100644 --- a/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp +++ b/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp @@ -341,8 +341,8 @@ bool CorrelatedValuePropagation::processCallSite(CallSite CS) { /// 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()) |

