blob: c87bd3591f9849e8cd3f46c502d19eb247001cda [file] [log] [blame]
Matt Arsenault86673ba2014-03-25 16:50:55 +00001; XFAIL: *
2; RUN: llc -verify-machineinstrs -march=r600 -mcpu=SI < %s | FileCheck -check-prefix=SI %s
3
4; 3 vectors have the same size and alignment as 4 vectors, so this
5; should be done in a single store.
6
Tom Stellard79243d92014-10-01 17:15:17 +00007; SI-LABEL: {{^}}store_v3i32:
Matt Arsenault86673ba2014-03-25 16:50:55 +00008; SI: BUFFER_STORE_DWORDX4
9define void @store_v3i32(<3 x i32> addrspace(1)* %out, <3 x i32> %a) nounwind {
10 store <3 x i32> %a, <3 x i32> addrspace(1)* %out, align 16
11 ret void
12}