comparison gcc/testsuite/gcc.dg/torture/pr87693.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile } */
2
3 void f (void);
4 void g (void);
5 void h (int a)
6 {
7 void *p, **q;
8 if (a)
9 p = (void *)f;
10 else
11 p = (void *)g;
12 q = (void *)p;
13 if (*q == (void *)0)
14 goto *p;
15 L0:
16 return;
17 }