1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Jello/test4.ll
Chris Lattner f86144293d Make phi test a bit more challenging
llvm-svn: 4499
2002-11-02 19:45:30 +00:00

11 lines
148 B
LLVM

; test phi node
void %main() {
br label %Test
Test:
%X = phi int [7, %0], [%Y, %Dead]
ret void
Dead:
%Y = shr int 12, ubyte 4
br label %Test
}