blob: 0f28f339e838760f9372a00fc9e7b18759b95c5d [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:
Tom Stellard326d6ec2014-11-05 14:50:53 +00008; SI: buffer_store_dwordx4
Matt Arsenault86673ba2014-03-25 16:50:55 +00009define 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}