1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fbranch-probabilities -fno-ipa-pure-const" } */
3
4 __attribute__ ((returns_twice)) void
5 bar (void)
6 {
7 }
8
9 void
10 foo (int cond)
11 {
12 if (cond)
13 bar ();
14 } /* { dg-message "profile count data" } */