From: David Edelsohn Date: Mon, 7 Mar 2005 21:24:21 +0000 (+0000) Subject: fold-const.c (fold_binary_op_with_conditional_arg): Fix typo ordering ops from earlie... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=92db3ec9db394735d4c11d477ab29d363243f151;p=gcc.git fold-const.c (fold_binary_op_with_conditional_arg): Fix typo ordering ops from earlier change. * fold-const.c (fold_binary_op_with_conditional_arg): Fix typo ordering ops from earlier change. From-SVN: r96046 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dc3a09efc84..ccb32deb926 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-07 David Edelsohn + + * fold-const.c (fold_binary_op_with_conditional_arg): Fix typo + ordering ops from earlier change. + 2005-03-07 Per Bothner Various fixes to allow us to again build if --enable-mapped-location: 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;