From ca4f23778585d2dc56fc95a0351db3de25a76c94 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 19 Nov 2004 12:34:13 +0000 Subject: [PATCH] * maxq-dis.c: Formatting. (print_insn): Warning fix. --- opcodes/ChangeLog | 5 +++++ opcodes/maxq-dis.c | 18 +++++++++--------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 9a642ad16c..8ab8c5b661 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2004-11-19 Alan Modra + + * maxq-dis.c: Formatting. + (print_insn): Warning fix. + 2004-11-17 Daniel Jacobowitz * arm-dis.c (WORD_ADDRESS): Define. diff --git a/opcodes/maxq-dis.c b/opcodes/maxq-dis.c index b3a7c4678c..8e4043361d 100644 --- a/opcodes/maxq-dis.c +++ b/opcodes/maxq-dis.c @@ -358,8 +358,8 @@ get_group (const unsigned int insn) if ((insn & _DECODE_LOWNIB_HIGHBYTE) == 0x0A00) { - /* && condition with sec part added on 26 May for resoveing 2 & 3 grp - conflict. */ + /* && condition with sec part added on 26 May for resolving 2 & 3 grp + conflict. */ if (((insn & _DECODE_LOWNIB_LOWBYTE) == 0x000A) && ((insn & _DECODE_GET_F_HIGHBYTE) == 0x8000)) { @@ -652,7 +652,8 @@ print_insn (bfd_vma memaddr, struct disassemble_info *info, grp.bit_no); } else - info->fprintf_func (info->stream, " %s", get_reg_name (grp.dst, (type1) 0)); + info->fprintf_func (info->stream, " %s", + get_reg_name (grp.dst, (type1) 0)); } /* SRC is ABSENT in the grp. */ @@ -682,7 +683,7 @@ print_insn (bfd_vma memaddr, struct disassemble_info *info, grp.bit_no); if (format == 0) info->fprintf_func (info->stream, " #%02xh.%d", - (grp.src, SRC), grp.bit_no); + grp.src, grp.bit_no); } else { @@ -692,11 +693,11 @@ print_insn (bfd_vma memaddr, struct disassemble_info *info, format = grp.fbit; if (format == 1) info->fprintf_func (info->stream, " %s", - get_reg_name (grp.src, - (type1) 1 /*SRC*/)); + get_reg_name (grp.src, + (type1) 1 /*SRC*/)); if (format == 0) info->fprintf_func (info->stream, " #%02xh", - (grp.src)); + (grp.src)); } } @@ -705,7 +706,7 @@ print_insn (bfd_vma memaddr, struct disassemble_info *info, } info->fprintf_func (info->stream, "Unable to Decode : %02x %02x", - insn[0], insn[1]); + insn[0], insn[1]); return 2; } @@ -714,4 +715,3 @@ print_insn_maxq_little (bfd_vma memaddr, struct disassemble_info *info) { return print_insn (memaddr, info, BFD_ENDIAN_LITTLE); } - -- 2.34.1