mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
* config/tc-s390.c (md_begin): Remove unused variable dup_insn.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2011-05-27 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-s390.c (md_begin): Remove unused variable dup_insn.
|
||||||
|
|
||||||
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
||||||
|
|
||||||
* config/tc-s390.c (md_gather_operands): Fix check for floating
|
* config/tc-s390.c (md_gather_operands): Fix check for floating
|
||||||
|
@ -527,7 +527,6 @@ md_begin (void)
|
|||||||
{
|
{
|
||||||
register const struct s390_opcode *op;
|
register const struct s390_opcode *op;
|
||||||
const struct s390_opcode *op_end;
|
const struct s390_opcode *op_end;
|
||||||
bfd_boolean dup_insn = FALSE;
|
|
||||||
const char *retval;
|
const char *retval;
|
||||||
|
|
||||||
/* Give a warning if the combination -m64-bit and -Aesa is used. */
|
/* Give a warning if the combination -m64-bit and -Aesa is used. */
|
||||||
@ -548,11 +547,8 @@ md_begin (void)
|
|||||||
{
|
{
|
||||||
retval = hash_insert (s390_opformat_hash, op->name, (void *) op);
|
retval = hash_insert (s390_opformat_hash, op->name, (void *) op);
|
||||||
if (retval != (const char *) NULL)
|
if (retval != (const char *) NULL)
|
||||||
{
|
as_bad (_("Internal assembler error for instruction format %s"),
|
||||||
as_bad (_("Internal assembler error for instruction format %s"),
|
op->name);
|
||||||
op->name);
|
|
||||||
dup_insn = TRUE;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s390_setup_opcodes ();
|
s390_setup_opcodes ();
|
||||||
|
Reference in New Issue
Block a user