SelectionDAG: Expand i64 = FP_TO_SINT i32
[oota-llvm.git] / test / CodeGen / R600 / large-alloca.ll
1 ; XFAIL: *
2 ; REQUIRES: asserts
3 ; RUN: llc -march=r600 -mcpu=SI < %s
4
5 define void @large_alloca(i32 addrspace(1)* %out, i32 %x) nounwind {
6   %large = alloca [256 x i32], align 4
7   %gep = getelementptr [256 x i32]* %large, i32 0, i32 255
8   store i32 %x, i32* %gep
9   ret void
10 }
11