[mips][msa] Added a regression test that depended on multiple patches to pass.
[oota-llvm.git] / test / CodeGen / R600 / store-vector-ptrs.ll
1 ; XFAIL: *
2 ; RUN: llc -march=r600 -mcpu=SI < %s
3
4 define void @store_vector_ptrs(<4 x i32*>* %out, <4 x [1024 x i32]*> %array) nounwind {
5   %p = getelementptr <4 x [1024 x i32]*> %array, <4 x i16> zeroinitializer, <4 x i16> <i16 16, i16 16, i16 16, i16 16>
6   store <4 x i32*> %p, <4 x i32*>* %out
7   ret void
8 }