mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 07:39:31 +00:00
New testcase
llvm-svn: 5018
This commit is contained in:
parent
2f2cf00a9f
commit
e6362c661b
12
test/Regression/Jello/test-loop.ll
Normal file
12
test/Regression/Jello/test-loop.ll
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user