aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2003-07-02 21:28:03 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2003-07-02 14:28:03 -0700
commit5ec3a5a7177f769f196bcd17a3dfb7d22097dcd5 (patch)
treeea04697b2687d5b72f843e93c68774b89ddb192c /gcc
parentfad37371f9c9b29b05761a8014ff3b1d79dd637f (diff)
downloadgcc-5ec3a5a7177f769f196bcd17a3dfb7d22097dcd5.zip
gcc-5ec3a5a7177f769f196bcd17a3dfb7d22097dcd5.tar.gz
gcc-5ec3a5a7177f769f196bcd17a3dfb7d22097dcd5.tar.bz2
dbxout.c (pending_bincls): Replace DBX_USE_BINCLS with DBX_USE_BINCL.
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. From-SVN: r68855
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/dbxout.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 02d6731..1a49319 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2003-07-02 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (compute_mov_length): Fix the length of
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index b39f627..188b060 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -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