OSDN Git Service

* config/tc-m68k.c (tc_gen_reloc <section>): Add ATTRIBUTE_UNUSED.
authoramodra <amodra>
Thu, 12 Dec 2002 22:16:15 +0000 (22:16 +0000)
committeramodra <amodra>
Thu, 12 Dec 2002 22:16:15 +0000 (22:16 +0000)
(md_show_usage): Fix signed/unsigned warning.

gas/ChangeLog
gas/config/tc-m68k.c

index cc1bc34..8f06905 100644 (file)
@@ -1,5 +1,7 @@
 2002-12-13  Alan Modra  <amodra@bigpond.net.au>
 
+       * config/tc-m68k.c (tc_gen_reloc <section>): Add ATTRIBUTE_UNUSED.
+       (md_show_usage): Fix signed/unsigned warning.
        * config/tc-m88k.c (get_reg): Make reg_prefix param unsigned.
        (calcop): Ditto for reg_prefix var.
        (hexval): Add cast to fix signed/unsigned warning.
index 4e23ced..0caf694 100644 (file)
@@ -882,7 +882,7 @@ tc_m68k_fix_adjustable (fixP)
 
 arelent *
 tc_gen_reloc (section, fixp)
-     asection *section;
+     asection *section ATTRIBUTE_UNUSED;
      fixS *fixp;
 {
   arelent *reloc;
@@ -6920,7 +6920,8 @@ md_show_usage (stream)
      FILE *stream;
 {
   const char *default_cpu = TARGET_CPU;
-  int default_arch, i;
+  int i;
+  unsigned int default_arch;
 
   /* Get the canonical name for the default target CPU.  */
   if (*default_cpu == 'm')