remove redundant parents
From-SVN: r34823
This commit is contained in:
parent
20427c6b9b
commit
792a328b3b
1 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue