summaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-03-04 20:48:39 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-03-04 20:48:39 +0000
commit650af5d0f8740682d4a5bd6aa04b8379e378e0f4 (patch)
treed9bb0d6f43a505e0730225a222882df590c4bdcc /test/CodeGen
parent99027d76f31d0a9f9c86a08114545dca8b3d2dc1 (diff)
downloadllvm-650af5d0f8740682d4a5bd6aa04b8379e378e0f4.tar.gz
llvm-650af5d0f8740682d4a5bd6aa04b8379e378e0f4.tar.bz2
llvm-650af5d0f8740682d4a5bd6aa04b8379e378e0f4.tar.xz
Add testcase for r127032
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127033 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-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 0000000000..d65cc025d0
--- /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*)