* config/tc-h8300.c (parse_reg): Make the function static.
authorJeff Law <law@redhat.com>
Wed, 21 Jun 2000 21:31:24 +0000 (21:31 +0000)
committerJeff Law <law@redhat.com>
Wed, 21 Jun 2000 21:31:24 +0000 (21:31 +0000)
        (parse_exp): Likewise.

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

index 7f6ff455d14ccd51eead9c3236ac682fa538b666..88ec756fd9f1e8851cdf4b6ac4f0321aed053bd4 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-21  Kazu Hirata  <kazu@hxi.com>
+
+       * config/tc-h8300.c (parse_reg): Make the function static.
+       (parse_exp): Likewise.
+
 2000-06-20  DJ Delorie  <dj@cygnus.com>
 
        * config/tc-i386.c (tc_i386_fix_adjustable): Revert change from
index 97a269528612f74afeb94cacf0c826bcfdebca87..3a9462383cafac1c4da044996d67878be5ff928a 100644 (file)
@@ -200,8 +200,8 @@ struct h8_op
   ccr
 */
 
-/* try and parse a reg name, returns number of chars consumed */
-int
+/* Try and parse a reg name, returns number of chars consumed.  */
+static int
 parse_reg (src, mode, reg, direction)
      char *src;
      op_type *mode;
@@ -290,7 +290,7 @@ parse_reg (src, mode, reg, direction)
   return 0;
 }
 
-char *
+static char *
 parse_exp (s, op)
      char *s;
      expressionS * op;