From 88b38f0c3c59ccfcf2dab95f780360f6e7714a4a Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 24 Feb 1998 20:57:58 +0000 Subject: * 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 --- opcodes/arm-dis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opcodes/arm-dis.c') 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 -- cgit v1.1