aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/largeimm1.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/largeimm1.ll')
-rw-r--r--test/CodeGen/Mips/largeimm1.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/Mips/largeimm1.ll b/test/CodeGen/Mips/largeimm1.ll
new file mode 100644
index 000000000000..d65cc025d085
--- /dev/null
+++ b/test/CodeGen/Mips/largeimm1.ll
@@ -0,0 +1,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*)