mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 17:32:36 +00:00
10 lines
254 B
LLVM
10 lines
254 B
LLVM
|
; RUN: llc < %s -march=r600 -mcpu=tahiti | FileCheck %s
|
||
|
|
||
|
; SI-CHECK: @f64_kernel_arg
|
||
|
; SI-CHECK: BUFFER_STORE_DWORDX2
|
||
|
define void @f64_kernel_arg(double addrspace(1)* %out, double %in) {
|
||
|
entry:
|
||
|
store double %in, double addrspace(1)* %out
|
||
|
ret void
|
||
|
}
|