summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/global-merge.ll
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-11-17 21:25:36 +0000
committerBob Wilson <bob.wilson@apple.com>2010-11-17 21:25:36 +0000
commit619a3726177c63a14e2822a80e6bc897be2e5a91 (patch)
treed53a5db9a75e6c1cd36f80127f4252c512f35b83 /test/CodeGen/ARM/global-merge.ll
parent72831dc905c2354fc08762dbfd5f1b20fbd5b18b (diff)
downloadllvm-619a3726177c63a14e2822a80e6bc897be2e5a91.tar.gz
llvm-619a3726177c63a14e2822a80e6bc897be2e5a91.tar.bz2
llvm-619a3726177c63a14e2822a80e6bc897be2e5a91.tar.xz
Fix ARMGlobalMerge pass to check if globals are entirely within range.
It is generally not sufficient to check if the starting offset is in range of the maximum offset that can be efficiently used for the target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/global-merge.ll')
-rw-r--r--test/CodeGen/ARM/global-merge.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/global-merge.ll b/test/CodeGen/ARM/global-merge.ll
index dcc16c07ef..e519dde33a 100644
--- a/test/CodeGen/ARM/global-merge.ll
+++ b/test/CodeGen/ARM/global-merge.ll
@@ -9,3 +9,9 @@
; CHECK: _MergedGlobals:
@g1 = internal global i32 1
@g2 = internal global i32 2
+
+; Make sure that the complete variable fits within the range of the maximum
+; offset. Having the starting offset in range is not sufficient.
+; When this works properly, @g3 is placed in a separate chunk of merged globals.
+; CHECK: _MergedGlobals1:
+@g3 = internal global [30 x i32] [ i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10 ]