Pass name cleanups
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-prof / ic-misattribution-1.c
blobe9f3a418dca9ad2c64aae7f641fb67609a824cfd
1 /* { dg-options "-O2 -fdump-ipa-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-ipa-dump "hist->count 1 hist->all 1" "profile" } } */
19 /* { dg-final-use { cleanup-ipa-dump "profile" } } */