diff options
author | Alan Modra <amodra@gmail.com> | 2004-11-19 12:34:13 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-11-19 12:34:13 +0000 |
commit | ca4f23778585d2dc56fc95a0351db3de25a76c94 (patch) | |
tree | 7013db916c6b188629fae77a8623609c9860d01a /opcodes | |
parent | f5c7edf4d6920c105f2201c6a7f864c3f85392dc (diff) | |
download | gdb-ca4f23778585d2dc56fc95a0351db3de25a76c94.zip gdb-ca4f23778585d2dc56fc95a0351db3de25a76c94.tar.gz gdb-ca4f23778585d2dc56fc95a0351db3de25a76c94.tar.bz2 |
* maxq-dis.c: Formatting.
(print_insn): Warning fix.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/maxq-dis.c | 18 |
2 files changed, 14 insertions, 9 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 9a642ad..8ab8c5b 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2004-11-19 Alan Modra <amodra@bigpond.net.au> + + * maxq-dis.c: Formatting. + (print_insn): Warning fix. + 2004-11-17 Daniel Jacobowitz <dan@codesourcery.com> * arm-dis.c (WORD_ADDRESS): Define. diff --git a/opcodes/maxq-dis.c b/opcodes/maxq-dis.c index b3a7c46..8e40433 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); } - |