PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / bss.c
blobaf8d0c634fe8b3e10d379104b69fe4810e380f59
1 /* Test non-zero initializers in .bss-like sections get properly refused. */
2 /* { dg-do compile } */
3 /* { dg-require-named-sections "" } */
5 int __attribute__((section(".bss.local"))) x = 1; /* { dg-error "" "zero init" } */
6 int *__attribute__((section(".bss.local"))) px = &x; /* { dg-error "" "zero init" } */
7 int __attribute__((section(".bss.local"))) y = 0;
8 int *__attribute__((section(".bss.local"))) py = (void*)0;