aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20050325-1.c
blob: 5760e387a22ce17b07e020f52a9ec7fcfb670e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* PR 20249 */

/* { dg-do compile } */
/* { dg-options "-O2 -fprofile-arcs" } */

extern int *g (int x, void* y);
extern void fg (long long x, int y);

static void
ff (int y, long long z)
{
  fg (z, 1);
}

void
f ()
{
  g (42, ff);
}