CodeGen: extend f16 conversions to permit types > float.
[oota-llvm.git] / test / CodeGen / R600 / store-v3i32.ll
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
9 define 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 }