diff options
author | Nick Clifton <nickc@redhat.com> | 2011-10-25 13:35:00 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-10-25 13:35:00 +0000 |
commit | dfc4b250e37fff38dea4df73353445903dec93ba (patch) | |
tree | 5461cbbed53a424bb54c12563f0f7c58b5bb15d3 /gas | |
parent | cfb8c0921c8ab3be8e5e48ec31e472742c2d4104 (diff) | |
download | gdb-dfc4b250e37fff38dea4df73353445903dec93ba.zip gdb-dfc4b250e37fff38dea4df73353445903dec93ba.tar.gz gdb-dfc4b250e37fff38dea4df73353445903dec93ba.tar.bz2 |
* config/tc-ns32k.c (md_begin): Rename local variable 'stat' to 'status'.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ns32k.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index a82fe62..2167d36 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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. diff --git a/gas/config/tc-ns32k.c b/gas/config/tc-ns32k.c index aaebde4..709a9bc 100644 --- a/gas/config/tc-ns32k.c +++ b/gas/config/tc-ns32k.c @@ -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! */ |