diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2001-07-24 00:48:04 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2001-07-24 00:48:04 +0000 |
commit | ec22bddae2cbf424f956d0508236719c34950578 (patch) | |
tree | b639b0af5f53adc20583088dcd432ca40b1c1ef8 /opcodes/pj-dis.c | |
parent | ca8fca25cdde0c7b6c66f33463ede5c79c693fa8 (diff) | |
download | gdb-ec22bddae2cbf424f956d0508236719c34950578.zip gdb-ec22bddae2cbf424f956d0508236719c34950578.tar.gz gdb-ec22bddae2cbf424f956d0508236719c34950578.tar.bz2 |
* m68k-dis.c: Fix formatting.
* pj-dis.c: Likewise.
* z8k-dis.c: Likewise.
Diffstat (limited to 'opcodes/pj-dis.c')
-rw-r--r-- | opcodes/pj-dis.c | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/opcodes/pj-dis.c b/opcodes/pj-dis.c index 816b617..1f486cc 100644 --- a/opcodes/pj-dis.c +++ b/opcodes/pj-dis.c @@ -16,7 +16,6 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - #include <stdio.h> #include "sysdep.h" #include "opcode/pj.h" @@ -24,7 +23,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ extern const pj_opc_info_t pj_opc_info[512]; -static int get_int (memaddr, iptr, info) +static int +get_int (memaddr, iptr, info) bfd_vma memaddr; int *iptr; struct disassemble_info *info; @@ -84,7 +84,7 @@ print_insn_pj (addr, info) if ((status = get_int (addr, &val, info))) goto fail; - fprintf_fn (stream," default: "); + fprintf_fn (stream, " default: "); (*info->print_address_func) (val + insn_start, info); addr += 4; @@ -96,15 +96,16 @@ print_insn_pj (addr, info) goto fail; addr += 4; - while (lowval <= highval) { - if ((status = get_int (addr, &val, info))) - goto fail; - fprintf_fn (stream," %d:[", lowval); - (*info->print_address_func) (val + insn_start, info); - fprintf_fn (stream," ]"); - addr += 4; - lowval++; - } + while (lowval <= highval) + { + if ((status = get_int (addr, &val, info))) + goto fail; + fprintf_fn (stream, " %d:[", lowval); + (*info->print_address_func) (val + insn_start, info); + fprintf_fn (stream, " ]"); + addr += 4; + lowval++; + } return addr - insn_start; } @@ -122,26 +123,27 @@ print_insn_pj (addr, info) goto fail; addr += 4; - fprintf_fn (stream," default: "); + fprintf_fn (stream, " default: "); (*info->print_address_func) (val + insn_start, info); if ((status = get_int (addr, &count, info))) goto fail; addr += 4; - while (count--) { - if ((status = get_int (addr, &val, info))) - goto fail; - addr += 4; - fprintf_fn (stream," %d:[", val); + while (count--) + { + if ((status = get_int (addr, &val, info))) + goto fail; + addr += 4; + fprintf_fn (stream, " %d:[", val); - if ((status = get_int (addr, &val, info))) - goto fail; - addr += 4; + if ((status = get_int (addr, &val, info))) + goto fail; + addr += 4; - (*info->print_address_func) (val + insn_start, info); - fprintf_fn (stream," ]"); - } + (*info->print_address_func) (val + insn_start, info); + fprintf_fn (stream, " ]"); + } return addr - insn_start; } for (a = 0; op->arg[a]; a++) |