Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/20050325-1.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 /* PR 20249 */ |
2 | |
3 /* { dg-do compile } */ | |
4 /* { dg-options "-O2 -fprofile-arcs" } */ | |
5 /* { dg-require-profiling "-fprofile-generate" } */ | |
6 | |
7 extern int *g (int x, void* y); | |
8 extern void fg (long long x, int y); | |
9 | |
10 static void | |
11 ff (int y, long long z) | |
12 { | |
13 fg (z, 1); | |
14 } | |
15 | |
16 void | |
17 f () | |
18 { | |
19 g (42, ff); | |
20 } |