* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / tree-prof / pr79259.C
blob6125a179bdc7c48c69dd85a2e6253ae90aca03ae
1 /* { dg-options "-O1" } */
3 inline bool
4 a (int b)
6   return (b & 5) != b;
8 int c;
9 int
10 fn2 ()
12   if (a (c == 0))
13     return 0;
15   return 0;
18 int main()
20   fn2();