1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/test/ExecutionEngine/test-phi.ll

33 lines
452 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade %s | llvm-as -f -o %t.bc
2004-11-07 00:32:43 +01:00
; RUN: lli %t.bc > /dev/null
; test phi node
2002-12-13 11:12:50 +01:00
%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
}