Fixed bug displaying symbols in big endian arms.

This commit is contained in:
Nick Clifton 1998-02-24 19:07:28 +00:00
parent 69312dac86
commit c3ba2ed2d0
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Tue Feb 24 11:06:18 1998 Nick Clifton <nickc@cygnus.com>
* arm-dis.c (print_insn_big_arm): Save the current symbol before
displaying a disassembled line.
Mon Feb 23 13:16:17 1998 Doug Evans <devans@seba.cygnus.com>
* cgen-asm.c: Include symcat.h.

View file

@ -714,7 +714,7 @@ print_insn_big_arm (pc, info)
int is_thumb;
cs = coffsymbol (info->symbol);
is_thumb =
is_thumb = (cs != NULL) &&
( cs->native->u.syment.n_sclass == C_THUMBEXT
|| cs->native->u.syment.n_sclass == C_THUMBSTAT
|| cs->native->u.syment.n_sclass == C_THUMBLABEL
@ -758,6 +758,8 @@ print_insn_big_arm (pc, info)
given = (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | (b[3]);
}
saved_symbol = info->symbol;
if (is_thumb)
{
status = print_insn_thumb (pc, info, given);
@ -785,7 +787,7 @@ print_insn_little_arm (pc, info)
int is_thumb;
cs = coffsymbol (info->symbol);
is_thumb =
is_thumb = (cs != NULL) &&
( cs->native->u.syment.n_sclass == C_THUMBEXT
|| cs->native->u.syment.n_sclass == C_THUMBSTAT
|| cs->native->u.syment.n_sclass == C_THUMBLABEL