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

int foo(void)
{
  int i = 0;
  char *p = (char *)&i;
  return *(int *)p;
}

struct Foo {
  int i;
} f;

int bar(void)
{
  char *p = (char *)&f;
  return ((struct Foo *)p)->i;
}

extern const struct Foo g;

int foobar(void)
{
  struct Foo *p = (struct Foo *)&g;
  return ((const struct Foo *)p)->i;
}

/* { dg-final { scan-tree-dump "= i_.;" "ccp1" } } */
/* { dg-final { scan-tree-dump "= f.i;" "ccp1" } } */
/* { dg-final { scan-tree-dump "= g.i;" "ccp1" } } */
/* { dg-final { cleanup-tree-dump "ccp1" } } */