mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
13 lines
328 B
LLVM
13 lines
328 B
LLVM
|
; RUN: llc < %s -march=r600 -mcpu=SI -verify-machineinstrs | FileCheck %s
|
||
|
|
||
|
; CHECK-LABEL: @select0
|
||
|
; CHECK: V_CNDMASK
|
||
|
; CHECK: V_CNDMASK
|
||
|
define void @select0(i64 addrspace(1)* %out, i32 %cond, i64 %in) {
|
||
|
entry:
|
||
|
%0 = icmp ugt i32 %cond, 5
|
||
|
%1 = select i1 %0, i64 0, i64 %in
|
||
|
store i64 %1, i64 addrspace(1)* %out
|
||
|
ret void
|
||
|
}
|