* config/tc-s390.c (md_begin): Remove unused variable dup_insn.

This commit is contained in:
Nick Clifton 2011-05-27 12:56:06 +00:00
parent 04c932a298
commit 8e1adb8d3c
2 changed files with 6 additions and 6 deletions

View File

@ -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>
* config/tc-s390.c (md_gather_operands): Fix check for floating

View File

@ -527,7 +527,6 @@ md_begin (void)
{
register const struct s390_opcode *op;
const struct s390_opcode *op_end;
bfd_boolean dup_insn = FALSE;
const char *retval;
/* 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);
if (retval != (const char *) NULL)
{
as_bad (_("Internal assembler error for instruction format %s"),
op->name);
dup_insn = TRUE;
}
as_bad (_("Internal assembler error for instruction format %s"),
op->name);
}
s390_setup_opcodes ();