summaryrefslogtreecommitdiff
path: root/opcodes/pj-dis.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2001-07-24 00:48:04 +0000
committerKazu Hirata <kazu@codesourcery.com>2001-07-24 00:48:04 +0000
commit2202972b0b24963d3d1785294f583778cad5406d (patch)
tree0dce5b8972f6daff322f289f9333e0be6af32bfc /opcodes/pj-dis.c
parent281b1ad531e0261c56a72a0da5e0d973bd0b1a68 (diff)
downloadbinutils-redhat-2202972b0b24963d3d1785294f583778cad5406d.tar.gz
* 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.c50
1 files changed, 26 insertions, 24 deletions
diff --git a/opcodes/pj-dis.c b/opcodes/pj-dis.c
index 816b6175b6..1f486ccf8f 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++)