summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Mips/largeimm1.ll
blob: d65cc025d085bc7e1bd762bd8a1dc8c232e1a9d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc -march=mipsel < %s | FileCheck %s

; CHECK: lui $at, 49152
; CHECK: lui $at, 16384
define void @f() nounwind {
entry:
  %a1 = alloca [1073741824 x i8], align 1
  %arrayidx = getelementptr inbounds [1073741824 x i8]* %a1, i32 0, i32 1048676
  call void @f2(i8* %arrayidx) nounwind
  ret void
}

declare void @f2(i8*)