Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-prof / ic-misattribution-1.c
blobc36dd8dd05240f9dba78a1059884a1abb9ba8fad
1 /* { dg-options "-O2 -fdump-tree-tree_profile" } */
2 /* { dg-additional-sources "ic-misattribution-1a.c" } */
4 extern void other_caller (void);
6 void
7 callee (void)
9 return;
12 void
13 caller(void (*func) (void))
15 func ();
18 /* { dg-final-use { scan-tree-dump "hist->count 1 hist->all 1" "tree_profile" } } */
19 /* { dg-final-use { cleanup-tree-dump "tree_profile" } } */