blob: 4a5e8869c2df1bbb7f45f64dbd88d1b3b915e4b0 [file] [log] [blame]
Tom Stellard49f8bfd2015-01-06 18:00:21 +00001; RUN: llc -march=amdgcn -mcpu=SI -mattr=-promote-alloca -verify-machineinstrs < %s
Marek Olsak75170772015-01-27 17:27:15 +00002; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-promote-alloca -verify-machineinstrs < %s
Tom Stellard8dd392e2014-10-09 18:09:15 +00003
4; Test that INSERT_SUBREG instructions don't have non-register operands after
5; instruction selection.
6
7; Make sure this doesn't crash
8; CHECK-LABEL: test:
9define void @test(i64 addrspace(1)* %out) {
10entry:
11 %tmp0 = alloca [16 x i32]
12 %tmp1 = ptrtoint [16 x i32]* %tmp0 to i32
13 %tmp2 = sext i32 %tmp1 to i64
14 store i64 %tmp2, i64 addrspace(1)* %out
15 ret void
16}