mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* config/tc-ns32k.c (md_begin): Rename local variable 'stat' to 'status'.
This commit is contained in:
parent
cfb8c0921c
commit
dfc4b250e3
@ -1,3 +1,8 @@
|
||||
2011-10-25 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* config/tc-ns32k.c (md_begin): Rename local variable 'stat' to
|
||||
'status'.
|
||||
|
||||
2011-10-25 Joern Rennecke <joern.rennecke@embecosm.com>
|
||||
|
||||
* NEWS: Mention addition of Adapteva Epiphany support.
|
||||
|
@ -1896,7 +1896,7 @@ md_begin (void)
|
||||
{
|
||||
/* Build a hashtable of the instructions. */
|
||||
const struct ns32k_opcode *ptr;
|
||||
const char *stat;
|
||||
const char *status;
|
||||
const struct ns32k_opcode *endop;
|
||||
|
||||
inst_hash_handle = hash_new ();
|
||||
@ -1904,9 +1904,9 @@ md_begin (void)
|
||||
endop = ns32k_opcodes + sizeof (ns32k_opcodes) / sizeof (ns32k_opcodes[0]);
|
||||
for (ptr = ns32k_opcodes; ptr < endop; ptr++)
|
||||
{
|
||||
if ((stat = hash_insert (inst_hash_handle, ptr->name, (char *) ptr)))
|
||||
if ((status = hash_insert (inst_hash_handle, ptr->name, (char *) ptr)))
|
||||
/* Fatal. */
|
||||
as_fatal (_("Can't hash %s: %s"), ptr->name, stat);
|
||||
as_fatal (_("Can't hash %s: %s"), ptr->name, status);
|
||||
}
|
||||
|
||||
/* Some private space please! */
|
||||
|
Loading…
Reference in New Issue
Block a user