mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-15 05:01:13 +08:00
MIPS/GAS: Remove stale `prev_reloc_op_frag' variable
Ever since commit 4d7206a284ee ("Rework MIPS macro relaxation, fix string merging bug"), <https://sourceware.org/ml/binutils/2004-01/msg00248.html>, `prev_reloc_op_frag' has only been set and never used. Remove it then. gas/ * config/tc-mips.c (prev_reloc_op_frag): Remove variable. (my_getSmallExpression): Adjust accordingly.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2020-07-21 Maciej W. Rozycki <macro@linux-mips.org>
|
||||||
|
|
||||||
|
* config/tc-mips.c (prev_reloc_op_frag): Remove variable.
|
||||||
|
(my_getSmallExpression): Adjust accordingly.
|
||||||
|
|
||||||
2020-07-20 Jan Beulich <jbeulich@suse.com>
|
2020-07-20 Jan Beulich <jbeulich@suse.com>
|
||||||
|
|
||||||
PR gas/4572
|
PR gas/4572
|
||||||
|
@ -889,11 +889,6 @@ struct mips_hi_fixup
|
|||||||
|
|
||||||
static struct mips_hi_fixup *mips_hi_fixup_list;
|
static struct mips_hi_fixup *mips_hi_fixup_list;
|
||||||
|
|
||||||
/* The frag containing the last explicit relocation operator.
|
|
||||||
Null if explicit relocations have not been used. */
|
|
||||||
|
|
||||||
static fragS *prev_reloc_op_frag;
|
|
||||||
|
|
||||||
/* Map mips16 register numbers to normal MIPS register numbers. */
|
/* Map mips16 register numbers to normal MIPS register numbers. */
|
||||||
|
|
||||||
static const unsigned int mips16_to_32_reg_map[] =
|
static const unsigned int mips16_to_32_reg_map[] =
|
||||||
@ -14720,12 +14715,8 @@ my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
|
|||||||
|
|
||||||
expr_end = str;
|
expr_end = str;
|
||||||
|
|
||||||
if (reloc_index != 0)
|
for (i = 0; i < reloc_index; i++)
|
||||||
{
|
reloc[i] = reversed_reloc[reloc_index - 1 - i];
|
||||||
prev_reloc_op_frag = frag_now;
|
|
||||||
for (i = 0; i < reloc_index; i++)
|
|
||||||
reloc[i] = reversed_reloc[reloc_index - 1 - i];
|
|
||||||
}
|
|
||||||
|
|
||||||
return reloc_index;
|
return reloc_index;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user