mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 12:30:55 +08:00
Fix obvious bug in previous commit
From-SVN: r39248
This commit is contained in:
parent
1cac878554
commit
3e882897a0
@ -2057,11 +2057,11 @@ simplify_ternary_operation (code, mode, op0_mode, op0, op1, op2)
|
||||
enum machine_mode cmp_mode = (GET_MODE (XEXP (op0, 0)) == VOIDmode
|
||||
? GET_MODE (XEXP (op0, 1))
|
||||
: GET_MODE (XEXP (op0, 0)));
|
||||
rtx temp;
|
||||
if (cmp_mode == VOIDmode)
|
||||
cmp_mode = op0_mode;
|
||||
rtx temp
|
||||
= simplify_relational_operation (GET_CODE (op0), cmp_mode,
|
||||
XEXP (op0, 0), XEXP (op0, 1));
|
||||
temp = simplify_relational_operation (GET_CODE (op0), cmp_mode,
|
||||
XEXP (op0, 0), XEXP (op0, 1));
|
||||
|
||||
/* See if any simplifications were possible. */
|
||||
if (temp == const0_rtx)
|
||||
|
Loading…
x
Reference in New Issue
Block a user