PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr80112.c
blob8d6ef3c88aab89dbe13b032a1ca5119485ab0964
1 /* PR rtl-optimization/80112 */
2 /* { dg-do compile } */
3 /* { dg-options "-Os -fmodulo-sched" } */
4 /* { dg-require-effective-target label_values } */
6 void **a;
8 void
9 foo (int c)
11 void *d[] = {&&e, &&f};
12 a = d;
13 switch (c)
16 c = 9;
17 /* FALLTHRU */
18 case 9:
19 goto *a++;
20 e:;