PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / comp-goto-2.c
blob54c2111927661ecafe76756386fc73bfb792dba3
1 /* Test diagnostics for addresses of labels and computed gotos. Test
2 with -pedantic. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic" } */
6 /* { dg-require-effective-target indirect_jumps } */
7 /* { dg-require-effective-target label_values } */
9 void
10 f (void)
12 void *p = &&a; /* { dg-warning "taking the address of a label is non-standard" } */
13 goto *p; /* { dg-warning "ISO C forbids 'goto \\*expr;'" } */
14 a: ;