summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/store.v4f32.ll
blob: 8b0d24445971cc6b994ae0f51c8d50e3a3b29b39 (plain)
1
2
3
4
5
6
7
8
9
;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 float> addrspace(1)* %out, <4 x float> addrspace(1)* %in) {
  %1 = load <4 x float> addrspace(1) * %in
  store <4 x float> %1, <4 x float> addrspace(1)* %out
  ret void
}