diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-07-01 22:52:26 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-07-01 22:52:26 -0400 |
commit | 792a328b3b91a03068709a0697fe1308af326592 (patch) | |
tree | f02c88581f30a782c006d50ab71b303599d60cb2 /gcc | |
parent | 20427c6b9b8288eef21c79df4f60b85cf04a39a7 (diff) | |
download | gcc-792a328b3b91a03068709a0697fe1308af326592.zip gcc-792a328b3b91a03068709a0697fe1308af326592.tar.gz gcc-792a328b3b91a03068709a0697fe1308af326592.tar.bz2 |
remove redundant parents
From-SVN: r34823
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fold-const.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 3b759e8..49f0b3b 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -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: |