diff options
| author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-02 02:52:26 +0000 |
|---|---|---|
| committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-02 02:52:26 +0000 |
| commit | fabb1f818bd6cb3ee5176b6c487b34d6e95512e2 (patch) | |
| tree | f02c88581f30a782c006d50ab71b303599d60cb2 | |
| parent | 12692474d37bcdf9d27e7f38bcd8da8187b33020 (diff) | |
| download | ppe42-gcc-fabb1f818bd6cb3ee5176b6c487b34d6e95512e2.tar.gz ppe42-gcc-fabb1f818bd6cb3ee5176b6c487b34d6e95512e2.zip | |
remove redundant parents
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34823 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 3b759e8c8be..49f0b3be3b2 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: |

