Index: lib/Analysis/ScalarEvolution.cpp =================================================================== --- lib/Analysis/ScalarEvolution.cpp +++ lib/Analysis/ScalarEvolution.cpp @@ -7058,6 +7058,7 @@ Cond = ExitCond->getPredicate(); else Cond = ExitCond->getInversePredicate(); + ICmpInst::Predicate OriginalCond = Cond; // Handle common loops like: for (X = "string"; *X; ++X) if (LoadInst *LI = dyn_cast(ExitCond->getOperand(0))) @@ -7141,7 +7142,7 @@ return ExhaustiveCount; return computeShiftCompareExitLimit(ExitCond->getOperand(0), - ExitCond->getOperand(1), L, Cond); + ExitCond->getOperand(1), L, OriginalCond); } ScalarEvolution::ExitLimit Index: test/Analysis/ScalarEvolution/shift-op.ll =================================================================== --- test/Analysis/ScalarEvolution/shift-op.ll +++ test/Analysis/ScalarEvolution/shift-op.ll @@ -160,5 +160,24 @@ ret void } +define void @test9() { +; CHECK-LABEL: Determining loop execution counts for: @test9 +; CHECK: Loop %loop: Unpredictable max backedge-taken count. + +; This is an infinite loop, make sure that it recognized as such. + +entry: + br label %loop + +leave: + ret void + +loop: + %iv = phi i32 [ -20, %entry ], [ %iv.shift, %loop ] + %iv.shift = ashr i32 %iv, 1 + %exit.cond = icmp sgt i32 %iv, -1 + br i1 %exit.cond, label %leave, label %loop +} + !0 = !{i32 0, i32 50000} !1 = !{i32 -5000, i32 -1}