aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr61681.c
blob: 226de0c1aa73df335b5c167b2adcce43344ea13c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* { dg-do run } */

extern void abort (void);

int a = 1, *e = &a, **f = &e, *l, *p, j;
static int b;
long d;
short g;

void
fn1 (int *p)
{
  int m;
  if (!(*p & j))
    {
      int *n = &m;
      for (d = 6; d; d--)
	{
	  for (g = 0; g < 1; g++)
	    {
	      n = l = *f;
	      b = *p;
	    }
	  *n = 0;
	}
    }
}

int
main ()
{
  p = *f;
  fn1 (p);
  if (b != 0)
    abort ();
  return 0;
}