aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Mips/Fast-ISel/stackloadstore.ll
blob: 0541b8de7f476e4073b514fefda1c692de4b4c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: llc < %s -mtriple=mipsel -mcpu=mips32 -fast-isel -frame-pointer=all -relocation-model=pic < %s

; Test that negative array access don't crash constant synthesis when fast isel
; generates negative offsets.

define i16 @test() {
  %a = alloca [4 x i16], align 4
  %arrayidx = getelementptr inbounds [4 x i16], ptr %a, i32 0, i32 -2
  %b = load i16, ptr %arrayidx, align 2
  ret i16 %b
}

define void @test2() {
  %a = alloca [4 x i16], align 4
  %arrayidx = getelementptr inbounds [4 x i16], ptr %a, i32 0, i32 -2
  store i16 2, ptr %arrayidx, align 2
  ret void
}