* config/tc-h8300.c: Make some functions and global
authorKazu Hirata <kazu@codesourcery.com>
Thu, 20 Nov 2003 04:25:26 +0000 (04:25 +0000)
committerKazu Hirata <kazu@codesourcery.com>
Thu, 20 Nov 2003 04:25:26 +0000 (04:25 +0000)
variables static appropriately.

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

index 2ff7ad98bf6f47c36a88abb9c9c8d6a7b05ac9df..58e3efc8d1cc0f9286b3f675722b926b6f7e437b 100644 (file)
@@ -1,3 +1,8 @@
+2003-11-19  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/tc-h8300.c: Make some functions and global
+       variables static appropriately.
+
 2003-11-19  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/obj-ieee.c: Remove duplicate prototypes.
index 359e3481384783ed3755a7edd3508dbfb341685a..5d08d373b077b500388e80c468de4c6c21d7971e 100644 (file)
@@ -43,23 +43,23 @@ const char comment_chars[] = ";";
 const char line_comment_chars[] = "#";
 const char line_separator_chars[] = "";
 
-void sbranch (int);
-void h8300hmode (int);
-void h8300smode (int);
-void h8300hnmode (int);
-void h8300snmode (int);
-void h8300sxmode (int);
-void h8300sxnmode (int);
+static void sbranch (int);
+static void h8300hmode (int);
+static void h8300smode (int);
+static void h8300hnmode (int);
+static void h8300snmode (int);
+static void h8300sxmode (int);
+static void h8300sxnmode (int);
 static void pint (int);
 
-int Hmode;
-int Smode;
-int Nmode;
-int SXmode;
+static int Hmode;
+static int Smode;
+static int Nmode;
+static int SXmode;
 
 #define PSIZE (Hmode && !Nmode ? L_32 : L_16)
 
-int bsize = L_8;               /* Default branch displacement.  */
+static int bsize = L_8;                /* Default branch displacement.  */
 
 struct h8_instruction
 {
@@ -70,9 +70,9 @@ struct h8_instruction
   const struct h8_opcode *opcode;
 };
 
-struct h8_instruction *h8_instructions;
+static struct h8_instruction *h8_instructions;
 
-void
+static void
 h8300hmode (int arg ATTRIBUTE_UNUSED)
 {
   Hmode = 1;
@@ -83,7 +83,7 @@ h8300hmode (int arg ATTRIBUTE_UNUSED)
 #endif
 }
 
-void
+static void
 h8300smode (int arg ATTRIBUTE_UNUSED)
 {
   Smode = 1;
@@ -94,7 +94,7 @@ h8300smode (int arg ATTRIBUTE_UNUSED)
 #endif
 }
 
-void
+static void
 h8300hnmode (int arg ATTRIBUTE_UNUSED)
 {
   Hmode = 1;
@@ -106,7 +106,7 @@ h8300hnmode (int arg ATTRIBUTE_UNUSED)
 #endif
 }
 
-void
+static void
 h8300snmode (int arg ATTRIBUTE_UNUSED)
 {
   Smode = 1;
@@ -118,7 +118,7 @@ h8300snmode (int arg ATTRIBUTE_UNUSED)
 #endif
 }
 
-void
+static void
 h8300sxmode (int arg ATTRIBUTE_UNUSED)
 {
   Smode = 1;
@@ -130,7 +130,7 @@ h8300sxmode (int arg ATTRIBUTE_UNUSED)
 #endif
 }
 
-void
+static void
 h8300sxnmode (int arg ATTRIBUTE_UNUSED)
 {
   Smode = 1;
@@ -143,7 +143,7 @@ h8300sxnmode (int arg ATTRIBUTE_UNUSED)
 #endif
 }
 
-void
+static void
 sbranch (int size)
 {
   bsize = size;