diff options
author | Serge Pavlov <sepavloff@gmail.com> | 2013-07-01 09:02:33 +0000 |
---|---|---|
committer | Serge Pavlov <sepavloff@gmail.com> | 2013-07-01 09:02:33 +0000 |
commit | f04f8b4f779919de0b3bccef2144d965ac51d35f (patch) | |
tree | 09f6e5632e3ad91e407ab1bab118c52199cc73ce | |
parent | ba62f2f1bf267e0437d8ea62474632f2f1eae34d (diff) | |
download | external_llvm-f04f8b4f779919de0b3bccef2144d965ac51d35f.zip external_llvm-f04f8b4f779919de0b3bccef2144d965ac51d35f.tar.gz external_llvm-f04f8b4f779919de0b3bccef2144d965ac51d35f.tar.bz2 |
Added the test missed from r185080.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185316 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/MC/ELF/bss-large.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/MC/ELF/bss-large.ll b/test/MC/ELF/bss-large.ll new file mode 100644 index 0000000..e2a7a23 --- /dev/null +++ b/test/MC/ELF/bss-large.ll @@ -0,0 +1,13 @@ +; RUN: llc -filetype=obj %s -o %t + +; PR16338 - ICE when compiling very large two-dimensional array +; Check if a huge object can be put into bss section +; C++ code is: +; int a[60666][60666]; + +; ModuleID = 'test.c' +target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" +target triple = "x86_64-unknown-linux-gnu" + +@a0 = addrspace(1) global [4 x [4 x i32]] zeroinitializer, align 16 +@a = global [60666 x [60666 x i32]] zeroinitializer, align 16 |