1; 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} 13