mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
e78760e179
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8558 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
274 B
LLVM
14 lines
274 B
LLVM
; It is illegal to remove BB1 because it will mess up the PHI node!
|
|
;
|
|
; RUN: llvm-as < %s | 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
|
|
}
|