gcc/ChangeLog:
* cfghooks.cc (merge_blocks): Fix typo in the previous change.
Co-authored-by: H.J. Lu <hjl.tools@gmail.com>
/* Pick the more reliable count. If both qualities agrees, pick the larger
one since turning mistakely hot code to cold is more harmful. */
- if (a->count.initialized_p ())
+ if (!a->count.initialized_p ())
a->count = b->count;
else if (a->count.quality () < b->count.quality ())
a->count = b->count;