brintos

brintos / llvm-project-archived public Read only

0
0
Text · 270 B · ba73428 Raw
11 lines · cpp
1// RUN: %clang_cc1 -S -o %t.ll -mllvm -debug-only=exprconstant %s 2>&1 | \2// RUN:     FileCheck %s3// REQUIRES: asserts4 5struct S { int i; };6 7static struct S arr[100000000] = {{ 0 }};8// CHECK: The number of elements to initialize: 1.9 10struct S *foo() { return arr; }11