summaryrefslogtreecommitdiff
path: root/opcodes/s390-dis.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-08-21 08:42:28 +0000
committerAndreas Jaeger <aj@suse.de>2001-08-21 08:42:28 +0000
commit4a2c881ed4531a48f9e6e53ba10a4c91aacb8254 (patch)
treea89fd492ea49ac1aa60c1c8c27d82809746513f1 /opcodes/s390-dis.c
parentb8b5d54b6e8e39a3aa4ffc42f9528dc1d58e4e12 (diff)
downloadbinutils-redhat-4a2c881ed4531a48f9e6e53ba10a4c91aacb8254.tar.gz
* i960-dis.c: Add parameters for prototypes
(ctrl): Add unused attributes. (cobr): Likewise. (put_abs): Likewise. * mips-dis.c: Add missing prototypes. * a29k-dis.c: Likewise. * arc-dis.c: Likewise. * ia64-opc.c: Likewise. * s390-dis.c: Add missing prototypes. (init_disasm): Remove unused attribute since the parameter is used.
Diffstat (limited to 'opcodes/s390-dis.c')
-rw-r--r--opcodes/s390-dis.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/s390-dis.c b/opcodes/s390-dis.c
index f2ab4079ee..0ddaaf1782 100644
--- a/opcodes/s390-dis.c
+++ b/opcodes/s390-dis.c
@@ -29,11 +29,15 @@ static int init_flag = 0;
static int opc_index[256];
static int current_arch_mask = 0;
+static void init_disasm PARAMS ((struct disassemble_info *));
+static unsigned int s390_extract_operand
+ PARAMS ((unsigned char *, const struct s390_operand *));
+
/* Set up index table for first opcode byte. */
static void
init_disasm (info)
- struct disassemble_info *info ATTRIBUTE_UNUSED;
+ struct disassemble_info *info;
{
const struct s390_opcode *opcode;
const struct s390_opcode *opcode_end;