mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
10 lines
307 B
LLVM
10 lines
307 B
LLVM
|
;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
|
||
|
|
||
|
;CHECK: RAT_WRITE_CACHELESS_128 T{{[0-9]+\.XYZW, T[0-9]+\.X}}, 1
|
||
|
|
||
|
define void @test(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
|
||
|
%1 = load <4 x i32> addrspace(1) * %in
|
||
|
store <4 x i32> %1, <4 x i32> addrspace(1)* %out
|
||
|
ret void
|
||
|
}
|