mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-11 13:37:07 +00:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
14 lines
188 B
LLVM
14 lines
188 B
LLVM
; RUN: opt < %s -simplifycfg | llvm-dis
|
|
define i32 @test() {
|
|
entry:
|
|
br label %T
|
|
T:
|
|
%C = phi i1 [false, %entry]
|
|
br i1 %C, label %X, label %Y
|
|
X:
|
|
ret i32 2
|
|
Y:
|
|
add i32 1, 2
|
|
ret i32 1
|
|
}
|