blob: b4442d1c243fa1f257f6051b9eafd0151f5b95a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
; RUN: opt %s -licm | llvm-dis
define void @testfunc(i32 %i) {
; <label>:0
br label %Loop
Loop: ; preds = %Loop, %0
%j = phi i32 [ 0, %0 ], [ %Next, %Loop ] ; <i32> [#uses=1]
%i2 = mul i32 %i, 17 ; <i32> [#uses=1]
%Next = add i32 %j, %i2 ; <i32> [#uses=2]
%cond = icmp eq i32 %Next, 0 ; <i1> [#uses=1]
br i1 %cond, label %Out, label %Loop
Out: ; preds = %Loop
ret void
}
|