Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / comp-goto-6.c
blob497f6cd76ca4037eb16b97a8dbdc89ecfabf3271
1 /* PR c/32122 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
4 void foo(void *a) { goto *10000000; } /* { dg-error "computed goto must be pointer type" } */
5 void foo1(void *a) { goto *a; }