aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-h8300.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2000-03-15 21:28:47 +0000
committerJeff Law <law@redhat.com>2000-03-15 21:28:47 +0000
commitdbbc7809e33dda3c759cb81cab8f4d22ab4bbdec (patch)
tree173dafdaf04d210284c6b1779406529412fe2c8c /gas/config/tc-h8300.c
parent0a83117aa437b74a8405f8c7144256840194da85 (diff)
downloadbinutils-dbbc7809e33dda3c759cb81cab8f4d22ab4bbdec.zip
binutils-dbbc7809e33dda3c759cb81cab8f4d22ab4bbdec.tar.gz
binutils-dbbc7809e33dda3c759cb81cab8f4d22ab4bbdec.tar.bz2
* config/tc-h8300.c: Add ATTRIBUTE_UNUSED as appropriate.
Diffstat (limited to 'gas/config/tc-h8300.c')
-rw-r--r--gas/config/tc-h8300.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c
index 115ada1..736d6b9 100644
--- a/gas/config/tc-h8300.c
+++ b/gas/config/tc-h8300.c
@@ -311,7 +311,7 @@ parse_exp (s, op)
static char *
skip_colonthing (ptr, exp, mode)
char *ptr;
- expressionS *exp;
+ expressionS *exp ATTRIBUTE_UNUSED;
int *mode;
{
if (*ptr == ':')
@@ -399,7 +399,7 @@ static void
get_operand (ptr, op, dst, direction)
char **ptr;
struct h8_op *op;
- unsigned int dst;
+ unsigned int dst ATTRIBUTE_UNUSED;
int direction;
{
char *src = *ptr;
@@ -1343,21 +1343,21 @@ md_assemble (str)
void
tc_crawl_symbol_chain (headers)
- object_headers * headers;
+ object_headers * headers ATTRIBUTE_UNUSED;
{
printf (_("call to tc_crawl_symbol_chain \n"));
}
symbolS *
md_undefined_symbol (name)
- char *name;
+ char *name ATTRIBUTE_UNUSED;
{
return 0;
}
void
tc_headers_hook (headers)
- object_headers * headers;
+ object_headers * headers ATTRIBUTE_UNUSED;
{
printf (_("call to tc_headers_hook \n"));
}
@@ -1433,15 +1433,15 @@ size_t md_longopts_size = sizeof(md_longopts);
int
md_parse_option (c, arg)
- int c;
- char *arg;
+ int c ATTRIBUTE_UNUSED;
+ char *arg ATTRIBUTE_UNUSED;
{
return 0;
}
void
md_show_usage (stream)
- FILE *stream;
+ FILE *stream ATTRIBUTE_UNUSED;
{
}
@@ -1454,9 +1454,9 @@ tc_aout_fix_to_chars ()
void
md_convert_frag (headers, seg, fragP)
- object_headers *headers;
- segT seg;
- fragS *fragP;
+ object_headers *headers ATTRIBUTE_UNUSED;
+ segT seg ATTRIBUTE_UNUSED;
+ fragS *fragP ATTRIBUTE_UNUSED;
{
printf (_("call to md_convert_frag \n"));
abort ();
@@ -1500,8 +1500,8 @@ md_apply_fix (fixP, val)
int
md_estimate_size_before_relax (fragP, segment_type)
- register fragS *fragP;
- register segT segment_type;
+ register fragS *fragP ATTRIBUTE_UNUSED;
+ register segT segment_type ATTRIBUTE_UNUSED;
{
printf (_("call tomd_estimate_size_before_relax \n"));
abort ();
@@ -1519,7 +1519,7 @@ md_number_to_chars (ptr, use, nbytes)
}
long
md_pcrel_from (fixP)
- fixS *fixP;
+ fixS *fixP ATTRIBUTE_UNUSED;
{
abort ();
}