aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr103277.c
blob: 5c206f919cd537d1d99c19d28f493f6726a339a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O1 -fbranch-probabilities -fno-ipa-pure-const" } */

__attribute__ ((returns_twice)) void
bar (void)
{
}

void
foo (int cond)
{
  if (cond)
    bar ();
} /* { dg-message "profile count data" } */