libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr105972.c
blob73f3385f7eba856ba58995343c07b63c84100889
1 /* PR c/105972 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g" } */
5 __attribute__((optimize (0))) int
6 foo (void)
8 int
9 bar (x)
10 int x;
12 return x;
14 return bar (0);