aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/pr54702_1.c
blob: 2afb0fbc063914059025667743eea1c550b8974f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int *b;
void *d;
int c;
static int *f1 ();
void f2 ()
{
  int *a = f1 (0);
}

int *f1 (j)
{
  b = malloc (0);
  d = *malloc;
  c = j;
}