From 40f09f82cc8956e5b8ad5c71a4b76828f538b27c Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 21 Jun 2000 21:31:24 +0000 Subject: [PATCH] * config/tc-h8300.c (parse_reg): Make the function static. (parse_exp): Likewise. --- gas/ChangeLog | 5 +++++ gas/config/tc-h8300.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 7f6ff455d14..88ec756fd9f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-06-21 Kazu Hirata + + * config/tc-h8300.c (parse_reg): Make the function static. + (parse_exp): Likewise. + 2000-06-20 DJ Delorie * config/tc-i386.c (tc_i386_fix_adjustable): Revert change from diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c index 97a26952861..3a9462383ca 100644 --- a/gas/config/tc-h8300.c +++ b/gas/config/tc-h8300.c @@ -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; -- 2.30.2