* config/tc-h8300.c: Add ATTRIBUTE_UNUSED as appropriate.
authorJeff Law <law@redhat.com>
Wed, 15 Mar 2000 21:28:47 +0000 (21:28 +0000)
committerJeff Law <law@redhat.com>
Wed, 15 Mar 2000 21:28:47 +0000 (21:28 +0000)
gas/ChangeLog
gas/config/tc-h8300.c

index c8b8a24aa582f492d731e3b17598446c67c5d065..36e055e746deb6f4bf0e71d970c02c2e72045b47 100644 (file)
@@ -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
index 115ada154231dcbc9d673f31c18ad699f30a385e..736d6b91294ddc952de8d746886c808d024fc6de 100644 (file)
@@ -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;
 {
 }
 \f
@@ -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 ();
 }