aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-ccp-28.c
blob: f5dbe70b3d0953ad9a1a570a2e2ac6255eb36427 (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
/* { dg-do run } */
/* { dg-options "-O -fdump-tree-ccp1" } */

extern void abort (void);

static int g[1];

static int * const p = &g[0];
static int * const q = &g[0];

int main(void)
{
  g[0] = 1;
  *p = 0;
  *p = *q;
  if (g[0] != 0)
    abort ();
  return 0;
}

/* We should have replaced all loads from p and q with the constant
   initial value.  */

/* { dg-final { scan-tree-dump-times "= p;" 0 "ccp1" } } */
/* { dg-final { scan-tree-dump-times "= q;" 0 "ccp1" } } */
/* { dg-final { cleanup-tree-dump "ccp1" } } */