remove redundant parents
authorJason Merrill <jason@gcc.gnu.org>
Sun, 2 Jul 2000 02:52:26 +0000 (22:52 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Sun, 2 Jul 2000 02:52:26 +0000 (22:52 -0400)
From-SVN: r34823

gcc/fold-const.c

index 3b759e8c8be4d924894b46f39418c6a416519f0a..49f0b3be3b2f7c8b0181eb76d32750383fe0fa53 100644 (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: