New testcase

llvm-svn: 5263
This commit is contained in:
Chris Lattner 2003-01-13 20:02:16 +00:00
parent cab0b442f2
commit 2c2f6aebf9
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
; RUN: as < %s | lli -force-interpreter=false
int %main() {
br label %Loop
Loop:
%X = phi int [0, %0], [1, %Loop]
br bool true, label %Out, label %Loop
Out:
ret int %X
}