diff options
author | Andreas Jaeger <aj@suse.de> | 2001-08-21 08:42:28 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-08-21 08:42:28 +0000 |
commit | 7fa108a4d514745631ce8ef6401cb51f1d0b8966 (patch) | |
tree | 9fa663b1874d12695bbd783bbdb4718f7c439953 /opcodes/s390-dis.c | |
parent | 5a65713f64ae0629f9b2255d72e8f52fefa13d68 (diff) | |
download | gdb-7fa108a4d514745631ce8ef6401cb51f1d0b8966.zip gdb-7fa108a4d514745631ce8ef6401cb51f1d0b8966.tar.gz gdb-7fa108a4d514745631ce8ef6401cb51f1d0b8966.tar.bz2 |
* 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.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/s390-dis.c b/opcodes/s390-dis.c index f2ab407..0ddaaf1 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; |