diff options
author | Doug Evans <dje@google.com> | 1998-02-24 20:57:58 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-02-24 20:57:58 +0000 |
commit | 88b38f0c3c59ccfcf2dab95f780360f6e7714a4a (patch) | |
tree | 01ab3688d41312f680daf9a860259cbf99389242 /opcodes/arm-dis.c | |
parent | b6d331b9cd6965f15762c17f2ee2b4596fe88772 (diff) | |
download | gdb-88b38f0c3c59ccfcf2dab95f780360f6e7714a4a.zip gdb-88b38f0c3c59ccfcf2dab95f780360f6e7714a4a.tar.gz gdb-88b38f0c3c59ccfcf2dab95f780360f6e7714a4a.tar.bz2 |
* arm-dis.c (print_insn_{big,little}_arm): info->symbol changed
to *info->symbols.
* mips-dis.c (print_insn_{big,little}_mips): Likewise.
* tic30-dis.c (print_branch): Likewise.
start-sanitize-sky
* mips-dis.c (print_insn_little_mips): Call dvp_info_mach_type.
* dvp-dis.c (dvp_info_mach_type): New function.
(print_insn_dvp): Call it.
(print_vif): Return length of 4 if mpg or direct insn so following
insns get properly disabled.
* dvp-opc.c (vif_insn_len): New argument `pcpu'. All callers updated.
end-sanitize-sky
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r-- | opcodes/arm-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index d9d890e..32112c1 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -712,7 +712,7 @@ print_insn_big_arm (pc, info) coff_symbol_type * cs; int is_thumb; - cs = coffsymbol (info->symbol); + cs = coffsymbol (*info->symbols); is_thumb = (cs != NULL) && ( cs->native->u.syment.n_sclass == C_THUMBEXT || cs->native->u.syment.n_sclass == C_THUMBSTAT @@ -780,7 +780,7 @@ print_insn_little_arm (pc, info) coff_symbol_type * cs; int is_thumb; - cs = coffsymbol (info->symbol); + cs = coffsymbol (*info->symbols); is_thumb = (cs != NULL) && ( cs->native->u.syment.n_sclass == C_THUMBEXT || cs->native->u.syment.n_sclass == C_THUMBSTAT |