blob: 79ffbd2581fa0e877e76f69af9d35bd5808d3dd4 [file] [log] [blame]
; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
; RUN: lli %t.bc > /dev/null
int %main() {
br label %Loop
Loop:
%I = phi int [0, %0], [%i2, %Loop]
%i2 = add int %I, 1
%C = seteq int %i2, 10
br bool %C, label %Out, label %Loop
Out:
ret int 0
}