1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Jello/2003-01-04-PhiTest.ll
Chris Lattner 0c35443367 New testcase
llvm-svn: 5263
2003-01-13 20:02:16 +00:00

11 lines
175 B
LLVM

; 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
}