diff options
Diffstat (limited to 'gcc/tree-switch-conversion.c')
-rw-r--r-- | gcc/tree-switch-conversion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-switch-conversion.c b/gcc/tree-switch-conversion.c index d7d1c39..1f543b2 100644 --- a/gcc/tree-switch-conversion.c +++ b/gcc/tree-switch-conversion.c @@ -1942,8 +1942,8 @@ switch_decision_tree::balance_case_nodes (case_tree_node **head, /* Skip nodes while their probability does not reach that amount. */ prob -= (*npp)->m_c->m_prob; - if (prob.initialized_p () - && (prob < pivot_prob || ! (*npp)->m_right)) + if ((prob.initialized_p () && prob < pivot_prob) + || ! (*npp)->m_right) break; npp = &(*npp)->m_right; } |