remove redundant parents

From-SVN: r34823
This commit is contained in:
Jason Merrill 2000-07-01 22:52:26 -04:00
parent 20427c6b9b
commit 792a328b3b

View File

@ -6920,11 +6920,11 @@ fold (expr)
so that we can convert this back to the
corresponding COND_EXPR. */
return pedantic_non_lvalue
(convert (type, (fold (build (MIN_EXPR, comp_type,
(comp_code == LE_EXPR
? comp_op0 : comp_op1),
(comp_code == LE_EXPR
? comp_op1 : comp_op0))))));
(convert (type, fold (build (MIN_EXPR, comp_type,
(comp_code == LE_EXPR
? comp_op0 : comp_op1),
(comp_code == LE_EXPR
? comp_op1 : comp_op0)))));
break;
case GE_EXPR:
case GT_EXPR: