mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 14:39:09 +08:00
Fix typo
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2000-08-04 Nick Clifton <nickc@cygnus.com>
|
2000-08-04 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-sparc.c (md_begin): Fix typo in recent formatting
|
||||||
|
work.
|
||||||
|
|
||||||
* doc/as.texinfo (Pseudo Ops): Update to include descriptions
|
* doc/as.texinfo (Pseudo Ops): Update to include descriptions
|
||||||
of .popsection, .previous, .pushsection, .subsection,
|
of .popsection, .previous, .pushsection, .subsection,
|
||||||
.version, .vtable_entry, .vtable_inherit and .weak.
|
.version, .vtable_entry, .vtable_inherit and .weak.
|
||||||
|
@ -786,9 +786,9 @@ md_begin ()
|
|||||||
for (i = 0; native_op_table[i].name; i++)
|
for (i = 0; native_op_table[i].name; i++)
|
||||||
{
|
{
|
||||||
const struct sparc_opcode *insn;
|
const struct sparc_opcode *insn;
|
||||||
char *name = sparc_arch_size == (32
|
char *name = ((sparc_arch_size == 32)
|
||||||
? native_op_table[i].name32
|
? native_op_table[i].name32
|
||||||
: native_op_table[i].name64);
|
: native_op_table[i].name64);
|
||||||
insn = (struct sparc_opcode *) hash_find (op_hash, name);
|
insn = (struct sparc_opcode *) hash_find (op_hash, name);
|
||||||
if (insn == NULL)
|
if (insn == NULL)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user