summaryrefslogtreecommitdiff
path: root/gas
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
commit166a2cfbd9703c826deb31c53e6832b42710d9b3 (patch)
tree71e8ceefba9d3aeb7fdc197619a1ee513b691862 /gas
parentd6f57e2d6ca874f1f0917267e39d2a16e7363364 (diff)
downloadbinutils-redhat-166a2cfbd9703c826deb31c53e6832b42710d9b3.tar.gz
* config/tc-h8300.c: Add ATTRIBUTE_UNUSED as appropriate.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-h8300.c28
2 files changed, 18 insertions, 14 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index c8b8a24aa5..36e055e746 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-15 Kazu Hirata <kazu@hxi.com>
+
+ * config/tc-h8300.c: Add ATTRIBUTE_UNUSED as appropriate.
+
Mon Mar 13 22:02:59 2000 Hans-Peter Nilsson <hp@axis.se>
* expr.c (operand) [case 'f']: When testing if '0f' can start a
diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c
index 115ada1542..736d6b9129 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 ();
}