aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr116850.c
blob: 7ab5da1848bdd4767faaa5783b7ff554661f3f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-Os -w" } */

int a, b;
int *c()
{
  int d, *e = 0, *f = &d, *g = &a;
  if (b)
    g = 0;
  *e = *g;
  return f;
}