diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2001-08-13 08:09:58 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2001-08-13 08:09:58 +0000 |
commit | 7f6621cdd77983f544f331528e249bb5f4238953 (patch) | |
tree | 6463ce73d03ec44f51498c788ccdec51e341e875 /opcodes/pj-dis.c | |
parent | 198ce79b6b8e11c56a270eb3686574b87b0e7c75 (diff) | |
download | gdb-7f6621cdd77983f544f331528e249bb5f4238953.zip gdb-7f6621cdd77983f544f331528e249bb5f4238953.tar.gz gdb-7f6621cdd77983f544f331528e249bb5f4238953.tar.bz2 |
* mcore-dis.c: Fix formatting.
* mips-dis.c: Likewise.
* pj-dis.c: Likewise.
* z8k-dis.c: Likewise.
Diffstat (limited to 'opcodes/pj-dis.c')
-rw-r--r-- | opcodes/pj-dis.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/opcodes/pj-dis.c b/opcodes/pj-dis.c index 1f486cc..d46c5f9 100644 --- a/opcodes/pj-dis.c +++ b/opcodes/pj-dis.c @@ -1,5 +1,5 @@ /* pj-dis.c -- Disassemble picoJava instructions. - Copyright 1999, 2000 Free Software Foundation, Inc. + Copyright 1999, 2000, 2001 Free Software Foundation, Inc. Contributed by Steve Chamberlain, of Transmeta (sac@pobox.com). This program is free software; you can redistribute it and/or modify @@ -33,10 +33,10 @@ get_int (memaddr, iptr, info) int status = info->read_memory_func (memaddr, ival, 4, info); - *iptr = (ival[0] << 24) - | (ival[1] << 16) - | (ival[2] << 8) - | (ival[3] << 0) ; + *iptr = (ival[0] << 24) + | (ival[1] << 16) + | (ival[2] << 8) + | (ival[3] << 0); return status; } @@ -72,7 +72,7 @@ print_insn_pj (addr, info) fprintf_fn (stream, "%s", op->name); /* The tableswitch instruction is followed by the default - address, low value, high value and the destinations. */ + address, low value, high value and the destinations. */ if (strcmp (op->name, "tableswitch") == 0) { @@ -111,8 +111,8 @@ print_insn_pj (addr, info) /* The lookupswitch instruction is followed by the default address, element count and pairs of values and - addresses. */ - + addresses. */ + if (strcmp (op->name, "lookupswitch") == 0) { int count; |