blob: 8c3e697c89ae282dae1098b39407394b071bd026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
; RUN: llvm-upgrade < %s | llvm-as | opt -loop-unroll -disable-output
int %main() {
entry:
br label %no_exit
no_exit: ; preds = %entry, %no_exit
%indvar = phi uint [ 0, %entry ], [ %indvar.next, %no_exit ] ; <uint> [#uses=1]
%indvar.next = add uint %indvar, 1 ; <uint> [#uses=2]
%exitcond = setne uint %indvar.next, 2147483648 ; <bool> [#uses=1]
br bool %exitcond, label %no_exit, label %loopexit
loopexit: ; preds = %no_exit
ret int 0
}
|