From 600e9c9985ff6c233bc416452af578c309e30fbe Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Thu, 20 Nov 2003 04:25:26 +0000 Subject: [PATCH] * config/tc-h8300.c: Make some functions and global variables static appropriately. --- gas/ChangeLog | 5 +++++ gas/config/tc-h8300.c | 40 ++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 20 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 2ff7ad98bf..58e3efc8d1 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-11-19 Kazu Hirata + + * config/tc-h8300.c: Make some functions and global + variables static appropriately. + 2003-11-19 Kazu Hirata * config/obj-ieee.c: Remove duplicate prototypes. diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c index 359e348138..5d08d373b0 100644 --- a/gas/config/tc-h8300.c +++ b/gas/config/tc-h8300.c @@ -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;