aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20000707-1.c
blob: 85a3315c4e90a433424392c4be12776d036dfd2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O2 -Wall" } */
/* { dg-require-effective-target label_values } */

extern void foo(void *here);
extern inline void bar(void)
{
  __label__ here;
  foo(&&here);
here:
  ;
}

void baz(void)
{
  bar();
}