diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 21:24:21 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 21:24:21 +0000 |
commit | 84b251e4fd6537c189334eefda043e71832a5a01 (patch) | |
tree | 1ee8c39f5d040f7bf81c3fc78190b48f1c03908f /gcc/fold-const.c | |
parent | 47e69468f19a280502935718ecdfba033426de2e (diff) | |
download | gcc-84b251e4fd6537c189334eefda043e71832a5a01.tar.gz |
* fold-const.c (fold_binary_op_with_conditional_arg): Fix typo
ordering ops from earlier change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96046 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index e9fd5521d49..be21160303f 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -5459,7 +5459,7 @@ fold_binary_op_with_conditional_arg (enum tree_code code, tree cond, tree arg, int cond_first_p) { tree cond_type = cond_first_p ? TREE_TYPE (op0) : TREE_TYPE (op1); - tree arg_type = cond_first_p ? TREE_TYPE (op0) : TREE_TYPE (op1); + tree arg_type = cond_first_p ? TREE_TYPE (op1) : TREE_TYPE (op0); tree test, true_value, false_value; tree lhs = NULL_TREE; tree rhs = NULL_TREE; |