diff options
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 4c305aae832..e20fb16fb16 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -2262,6 +2262,10 @@ void LoopStrengthReduce::OptimizeShadowIV(Loop *L) {        if (!C) continue; +      // Ignore negative constants, as the code below doesn't handle them +      // correctly. TODO: Remove this restriction. +      if (!C->getValue().isStrictlyPositive()) continue; +        /* Add new PHINode. */        PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH); | 

