From: kazu Date: Sun, 23 Nov 2003 15:43:49 +0000 (+0000) Subject: * config/tc-h8300.c (Hmode): Make it global. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d696238cd495ff35ba1d634b0b4b48baf9a2b3b9;p=pf3gnuchains%2Fpf3gnuchains3x.git * config/tc-h8300.c (Hmode): Make it global. (Smode): Likewise. (Nmode): Likewise. (SXmode): Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 164b4240ba..bddeef1b8c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2003-11-23 Kazu Hirata + + * config/tc-h8300.c (Hmode): Make it global. + (Smode): Likewise. + (Nmode): Likewise. + (SXmode): Likewise. + 2003-11-22 Kazu Hirata * ehopt.c: Convert to ISO-C. diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c index 5d08d373b0..d518acae55 100644 --- a/gas/config/tc-h8300.c +++ b/gas/config/tc-h8300.c @@ -52,10 +52,10 @@ static void h8300sxmode (int); static void h8300sxnmode (int); static void pint (int); -static int Hmode; -static int Smode; -static int Nmode; -static int SXmode; +int Hmode; +int Smode; +int Nmode; +int SXmode; #define PSIZE (Hmode && !Nmode ? L_32 : L_16)