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

; CHECK: lui ${{[0-9]+}}, 49152
; CHECK: lui ${{[0-9]+}}, 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*)