New testcase

llvm-svn: 5018
This commit is contained in:
Chris Lattner 2002-12-13 12:10:16 +00:00
parent 2f2cf00a9f
commit e6362c661b

View File

@ -0,0 +1,12 @@
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
}