This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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: Typo in dbxout.c


David,

Your patch to dbxout.c broke mainline because of a typo. I checked
in the following patch as the obvious fix.


H.J.
---
2003-07-02  H.J. Lu  <hongjiu.lu@intel.com>

	* dbxout.c (pending_bincls): Replace DBX_USE_BINCLS with
	DBX_USE_BINCL.
	(emit_bincl_stab): Same.
	(emit_pending_bincls): Same.

Index: dbxout.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/dbxout.c,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -p -r1.150 -r1.151
--- dbxout.c	2 Jul 2003 17:50:37 -0000	1.150
+++ dbxout.c	2 Jul 2003 21:28:03 -0000	1.151
@@ -195,7 +195,7 @@ struct dbx_file GTY(())
   struct dbx_file *prev;              /* Chain to traverse all pending bincls.  */
 };
 
-#ifdef DBX_USE_BINCLS
+#ifdef DBX_USE_BINCL
 /* If zero then there is no pending BINCL.  */
 static int pending_bincls = 0;
 #endif
@@ -317,7 +317,7 @@ static int current_sym_nchars;
 #define CONTIN do { } while (0)
 #endif
 
-#ifdef DBX_USE_BINCLS
+#ifdef DBX_USE_BINCL
 static void emit_bincl_stab             (const char *c);
 static void emit_pending_bincls         (void);
 #endif


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