aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr24117.c
blob: ffa5dd04c46c75a9ce22abb9fbacc45d7f2cada9 (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
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

typedef struct  {
  int x;
  int z;
} Foo_t;

char *xm;
void bar(void);

void foo(void)
{
  Foo_t x;
  x.x = 1;
  x.z = 2;
  xm = (char *)&x;
  bar();
  /* We can't propagate x.z past bar, so this link_error should still be there.  */
  if (x.z != 2)
    link_error ();
}
/* { dg-final { scan-tree-dump-times "link_error" 1 "optimized"} } */
/* { dg-final { cleanup-tree-dump "optimized" } } */