mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
* config/tc-mips.c (macro)
<M_BGTUL_I, M_BGTU_I, M_BLEUL_I, M_BLEU_I>: Fix the constant used to compare against for the always-false/true case.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2010-12-09 Maciej W. Rozycki <macro@codesourcery.com>
|
||||||
|
|
||||||
|
* config/tc-mips.c (macro)
|
||||||
|
<M_BGTUL_I, M_BGTU_I, M_BLEUL_I, M_BLEU_I>: Fix the constant
|
||||||
|
used to compare against for the always-false/true case.
|
||||||
|
|
||||||
2010-12-09 Maciej W. Rozycki <macro@codesourcery.com>
|
2010-12-09 Maciej W. Rozycki <macro@codesourcery.com>
|
||||||
|
|
||||||
* config/tc-mips.c (macro): Remove a trailing 0 from NOP
|
* config/tc-mips.c (macro): Remove a trailing 0 from NOP
|
||||||
|
@ -5068,7 +5068,7 @@ macro (struct mips_cl_insn *ip)
|
|||||||
if (sreg == 0
|
if (sreg == 0
|
||||||
|| (HAVE_32BIT_GPRS
|
|| (HAVE_32BIT_GPRS
|
||||||
&& imm_expr.X_op == O_constant
|
&& imm_expr.X_op == O_constant
|
||||||
&& imm_expr.X_add_number == (offsetT) 0xffffffff))
|
&& imm_expr.X_add_number == -1))
|
||||||
goto do_false;
|
goto do_false;
|
||||||
if (imm_expr.X_op != O_constant)
|
if (imm_expr.X_op != O_constant)
|
||||||
as_bad (_("Unsupported large constant"));
|
as_bad (_("Unsupported large constant"));
|
||||||
@ -5203,7 +5203,7 @@ macro (struct mips_cl_insn *ip)
|
|||||||
if (sreg == 0
|
if (sreg == 0
|
||||||
|| (HAVE_32BIT_GPRS
|
|| (HAVE_32BIT_GPRS
|
||||||
&& imm_expr.X_op == O_constant
|
&& imm_expr.X_op == O_constant
|
||||||
&& imm_expr.X_add_number == (offsetT) 0xffffffff))
|
&& imm_expr.X_add_number == -1))
|
||||||
goto do_true;
|
goto do_true;
|
||||||
if (imm_expr.X_op != O_constant)
|
if (imm_expr.X_op != O_constant)
|
||||||
as_bad (_("Unsupported large constant"));
|
as_bad (_("Unsupported large constant"));
|
||||||
|
Reference in New Issue
Block a user