blob: 33578035daa20e4f93e9756b3e6df118f188aeff [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
7; SI-LABEL: @store_v3i32:
8; 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}