OSDN Git Service

* gcc.dg/tls/tls.exp: Remove temporary file.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20050325-1.c
1 /* PR 20249 */
2
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -fprofile-arcs" } */
5
6 extern int *g (int x, void* y);
7 extern void fg (long long x, int y);
8
9 static void
10 ff (int y, long long z)
11 {
12   fg (z, 1);
13 }
14
15 void
16 f ()
17 {
18   g (42, ff);
19 }