mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
e9bc1e8263
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219581 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
553 B
LLVM
26 lines
553 B
LLVM
; RUN: llc -mtriple=aarch64-apple-darwin -fast-isel -verify-machineinstrs < %s
|
|
|
|
; Test that the Machine Instruction PHI node doesn't have more than one operand
|
|
; from the same predecessor.
|
|
define i32 @foo(i32 %a, i32 %b, i1 %c) {
|
|
entry:
|
|
br i1 %c, label %switch, label %direct
|
|
|
|
switch:
|
|
switch i32 %a, label %exit [
|
|
i32 43, label %continue
|
|
i32 45, label %continue
|
|
]
|
|
|
|
direct:
|
|
%var = add i32 %b, 1
|
|
br label %continue
|
|
|
|
continue:
|
|
%var.phi = phi i32 [ %var, %direct ], [ 0, %switch ], [ 0, %switch ]
|
|
ret i32 %var.phi
|
|
|
|
exit:
|
|
ret i32 1
|
|
}
|