llvm-6502/test/ExecutionEngine/test-phi.ll
Chris Lattner 0907c16cbf Test more phi stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5005 91177308-0d34-0410-b5e6-96231b3b80d8
2002-12-13 10:12:50 +00:00

23 lines
270 B
LLVM

; test phi node
%Y = global int 6
void %blah(int *%X) {
br label %T
T:
phi int* [%X, %0], [%Y, %Dead]
ret void
Dead:
br label %T
}
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
}