New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5263 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-01-13 20:02:16 +00:00
parent bc40e898e1
commit 3ddad6f277

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
}