• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc -filetype=obj %s -o %t
2
3; PR16338 - ICE when compiling very large two-dimensional array
4; Check if a huge object can be put into bss section
5; C++ code is:
6;   int a[60666][60666];
7
8; ModuleID = 'test.c'
9target 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"
10target triple = "x86_64-unknown-linux-gnu"
11
12@a0 = addrspace(1) global [4 x [4 x i32]] zeroinitializer, align 16
13@a = global [60666 x [60666 x i32]] zeroinitializer, align 16
14