Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / asmgoto-3.c
blob5224429a3ce3fe3f5e2b1b842629917fdaf1d513
1 /* { dg-do compile } */
2 /* { dg-options "-Wunused" } */
4 int foo ()
6 asm goto ("" : : : : label);
7 return 1;
8 label:
9 return 0;