mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
289 B
LLVM
14 lines
289 B
LLVM
; It is illegal to remove BB1 because it will mess up the PHI node!
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -adce | llvm-dis | grep BB1
|
|
|
|
|
|
int "test"(bool %C, int %A, int %B) {
|
|
br bool %C, label %BB1, label %BB2
|
|
BB1:
|
|
br label %BB2
|
|
BB2:
|
|
%R = phi int [%A, %0], [%B, %BB1]
|
|
ret int %R
|
|
}
|