blob: fbf82c1535687f4599c80709e97f0adf14bbb219 [file] [log] [blame]
/* { dg-do run } */
/* { dg-additional-options "-fstrict-aliasing" } */
int a, c, *d = &c, **e = &d, *g = &a;
static int ***b, **f = &d;
int
main ()
{
**f = 0;
int ****h = 0;
if (c)
{
*h = &e;
***b = 0;
}
*e = g;
if (d != &a)
__builtin_abort ();
return 0;
}