]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/R600/store-vector-ptrs.ll
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.git] / test / CodeGen / R600 / store-vector-ptrs.ll
1 ; REQUIRES: asserts
2 ; XFAIL: *
3 ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs< %s
4
5 define void @store_vector_ptrs(<4 x i32*>* %out, <4 x [1024 x i32]*> %array) nounwind {
6   %p = getelementptr <4 x [1024 x i32]*> %array, <4 x i16> zeroinitializer, <4 x i16> <i16 16, i16 16, i16 16, i16 16>
7   store <4 x i32*> %p, <4 x i32*>* %out
8   ret void
9 }