mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
31c7b46989
llvm-svn: 2715
15 lines
221 B
LLVM
15 lines
221 B
LLVM
; RUN: as < %s | opt -adce -simplifycfg | dis
|
|
|
|
int "Test"(int %A, int %B) {
|
|
BB1:
|
|
br label %BB4
|
|
BB2:
|
|
br label %BB3
|
|
BB3:
|
|
%ret = phi int [%X, %BB4], [%B, %BB2]
|
|
ret int %ret
|
|
BB4:
|
|
%X = phi int [%A, %BB1]
|
|
br label %BB3
|
|
}
|