Commit abf7b40a by Richard Kenner

(bc_pushcase): Fix precedence error.

From-SVN: r11256
parent 3a42c8c3
......@@ -4281,7 +4281,7 @@ bc_pushcase (value, label)
if (case_label != thiscase->data.case_stmt.case_list
&& ! tree_int_cst_lt (case_label->high, value)
|| case_label->left && ! tree_int_cst_lt (value, case_label->left->low))
|| (case_label->left && ! tree_int_cst_lt (value, case_label->left->low)))
return 2;
new_label = (struct case_node *) oballoc (sizeof (struct case_node));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment