mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c49d7dd886
Upgrade tests to work with new llvm.exp version of llvm_runtest. llvm-svn: 36013
14 lines
268 B
LLVM
14 lines
268 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
|
|
; RUN: grep {ret i32 %A}
|
|
|
|
int %test(int %A) {
|
|
%X = or bool false, false
|
|
br bool %X, label %T, label %C
|
|
T:
|
|
%B = add int %A, 1
|
|
br label %C
|
|
C:
|
|
%C = phi int [%B, %T], [%A, %0]
|
|
ret int %C
|
|
}
|