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)