libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr100590.c
blob64cb717ed0eec806bd8c6734b3bb61ecab205bd8
1 /* PR rtl-optimization/100590 */
2 /* { dg-do compile { target asm_goto_with_outputs } } */
3 /* { dg-options "-O1 -fno-dce -w" } */
5 int
6 foo (void)
8 int x;
9 asm goto ("" : "+r" (x) : : : lab);
10 return 0;
11 lab:
12 return 1;