mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
4572ce85b0
llvm-svn: 33296
19 lines
314 B
LLVM
19 lines
314 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
|
|
; RUN: lli %t.bc > /dev/null
|
|
|
|
target endian = little
|
|
target pointersize = 32
|
|
|
|
implementation
|
|
|
|
int %main() {
|
|
entry:
|
|
br label %endif
|
|
then:
|
|
br label %endif
|
|
endif:
|
|
%x = phi uint [ 4, %entry ], [ 27, %then ]
|
|
%result = phi int [ 32, %then ], [ 0, %entry ]
|
|
ret int 0
|
|
}
|