diff options
author | Alan Modra <amodra@bigpond.net.au> | 2004-11-19 12:34:13 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2004-11-19 12:34:13 +0000 |
commit | 66488dc544fe7cd7739ebb5e9ee2cc8f043aa333 (patch) | |
tree | 785c6496912cdd0614afb3a187aaa8fa8d697ef6 /opcodes/maxq-dis.c | |
parent | 990cba922f5a2fad09241f637638653e1f3519ed (diff) | |
download | gdb-66488dc544fe7cd7739ebb5e9ee2cc8f043aa333.tar.gz |
* maxq-dis.c: Formatting.
(print_insn): Warning fix.
Diffstat (limited to 'opcodes/maxq-dis.c')
-rw-r--r-- | opcodes/maxq-dis.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/opcodes/maxq-dis.c b/opcodes/maxq-dis.c index b3a7c4678c5..8e4043361d1 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); } - |