1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/IndVarSimplify/2003-09-12-MultiplePred.ll
Dan Gohman 9268d67079 Teach ScalarEvolution how to compute a tripcount for a loop with
true or false as its exit condition. These are usually eliminated by
SimplifyCFG, but the may be left around during a pass which wishes
to preserve the CFG.

llvm-svn: 96683
2010-02-19 18:12:07 +00:00

16 lines
438 B
LLVM

; RUN: opt < %s -indvars -S | grep indvar
define i32 @test() {
; <label>:0
br i1 true, label %LoopHead, label %LoopHead
LoopHead: ; preds = %LoopHead, %0, %0
%A = phi i32 [ 7, %0 ], [ 7, %0 ], [ %B, %LoopHead ] ; <i32> [#uses=1]
%B = add i32 %A, 1 ; <i32> [#uses=2]
br i1 undef, label %LoopHead, label %Out
Out: ; preds = %LoopHead
ret i32 %B
}