aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr21728.c
blob: 991cb3886f85681bdd2892e74bc67bd2ad9e7adb (plain)
1
2
3
4
5
6
7
8
9
10
int main (void)
{
  __label__ l1;
  void __attribute__((used)) q(void)
  {
    goto l1;
  }

  l1:;
}