This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] tc-h8300.c: Make some variables global.


Hi,

When I tested the patch to make these variables static, build errors
were hidden in the middle of my build log.  Sorry for breaking the
port.

Committed as obvious.

Kazu Hirata

2003-11-23  Kazu Hirata  <kazu@cs.umass.edu>

	* config/tc-h8300.c (Hmode): Make it global.
	(Smode): Likewise.
	(Nmode): Likewise.
	(SXmode): Likewise.

Index: tc-h8300.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-h8300.c,v
retrieving revision 1.40
diff -u -r1.40 tc-h8300.c
--- tc-h8300.c	20 Nov 2003 04:25:26 -0000	1.40
+++ tc-h8300.c	23 Nov 2003 15:40:17 -0000
@@ -52,10 +52,10 @@
 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)
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]