summaryrefslogtreecommitdiff
path: root/opcodes/cgen-asm.c
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2000-07-26 22:45:49 +0000
committerDave Brolley <brolley@redhat.com>2000-07-26 22:45:49 +0000
commitad0df83dda9400dce4b1677a3714efa03e6e2477 (patch)
treed1624ed9d62e6e6305f5047332d081f9b481052b /opcodes/cgen-asm.c
parent2bc23fa247361bd2b829b56913b971d26323c25a (diff)
downloadbinutils-redhat-ad0df83dda9400dce4b1677a3714efa03e6e2477.tar.gz
2000-07-26 Dave Brolley <brolley@redhat.com>
* cgen-opc.c (cgen_hw_lookup_by_name): 'i' is now unsigned. (cgen_hw_lookup_by_num): Ditto. (cgen_operand_lookup_by_name): Ditto. (print_address): Ditto. (print_keyword): Ditto. * cgen-dis.c (hash_insn_array): Mark unused parameters with ATTRIBUTE_UNUSED. * cgen-asm.c (hash_insn_array): Mark unused parameters with ATTRIBUTE_UNUSED. (cgen_parse_keyword): Ditto.
Diffstat (limited to 'opcodes/cgen-asm.c')
-rw-r--r--opcodes/cgen-asm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/cgen-asm.c b/opcodes/cgen-asm.c
index 4ed69363a9..1e7ef2cba0 100644
--- a/opcodes/cgen-asm.c
+++ b/opcodes/cgen-asm.c
@@ -66,7 +66,7 @@ hash_insn_array (cd, insns, count, entsize, htable, hentbuf)
CGEN_CPU_DESC cd;
const CGEN_INSN *insns;
int count;
- int entsize;
+ int entsize ATTRIBUTE_UNUSED;
CGEN_INSN_LIST **htable;
CGEN_INSN_LIST *hentbuf;
{
@@ -198,7 +198,7 @@ cgen_asm_lookup_insn (cd, insn)
const char *
cgen_parse_keyword (cd, strp, keyword_table, valuep)
- CGEN_CPU_DESC cd;
+ CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
const char **strp;
CGEN_KEYWORD *keyword_table;
long *valuep;