You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.167
Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
parent
e19d552987
commit
b084638f15
@ -1,25 +0,0 @@
|
||||
; 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
|
||||
}
|
Reference in New Issue
Block a user