* config/tc-h8300.c (parse_reg): Make the function static.

(parse_exp): Likewise.
This commit is contained in:
Jeff Law 2000-06-21 21:31:24 +00:00
parent 6b2463a3ee
commit 40f09f82cc
2 changed files with 8 additions and 3 deletions

View 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

View 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;