pr79732.c: Require alias support.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr53589.c
blob5ab78907f9803111da0ddcbbf8fa0ed2a89ab019
1 /* PR rtl-optimization/53589 */
2 /* { dg-do compile } */
4 extern void foo (void) __attribute__ ((__noreturn__));
6 void
7 bar (int x)
9 if (x < 0)
10 foo ();
11 if (x == 0)
12 return;
13 __asm goto ("# %l[lab]" : : : : lab);
14 lab:;