1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Regression/Jello/test-phi.ll
Chris Lattner c3be436a6a Add new testcase for repeated preds
llvm-svn: 5056
2002-12-15 20:52:08 +00:00

30 lines
377 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
}
int %test(bool %C) {
br bool %C, label %T, label %T
T:
%X = phi int [123, %0], [123, %0]
ret int %X
}
int %main() {
br label %Test
Test:
%X = phi int [0, %0], [%Y, %Dead]
ret int %X
Dead:
%Y = shr int 12, ubyte 4
br label %Test
}