aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2003-07-03 10:18:18 +0000
committerAndreas Schwab <schwab@gcc.gnu.org>2003-07-03 10:18:18 +0000
commit8837d828e78c9f8237f463bd7893e754da76a2fe (patch)
treec47055307d151888d5d749dd8268c17c9e0932c4 /gcc
parentdd107e6641451fbdeb7c8aa1326df1594ed6edbd (diff)
downloadgcc-8837d828e78c9f8237f463bd7893e754da76a2fe.zip
gcc-8837d828e78c9f8237f463bd7893e754da76a2fe.tar.gz
gcc-8837d828e78c9f8237f463bd7893e754da76a2fe.tar.bz2
dbxout.c (pending_bincls): Move decl down inside DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO section.
* dbxout.c (pending_bincls): Move decl down inside DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO section. From-SVN: r68875
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/dbxout.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 520c9d9..88b7b75 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-03 Andreas Schwab <schwab@suse.de>
+
+ * dbxout.c (pending_bincls): Move decl down inside
+ DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO section.
+
2003-07-02 Nathan Sidwell <nathan@codesourcery.com>
* rtl.h (NOTE_DATA): Refer to whole union.
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 188b060..cd17805 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -195,11 +195,6 @@ struct dbx_file GTY(())
struct dbx_file *prev; /* Chain to traverse all pending bincls. */
};
-#ifdef DBX_USE_BINCL
-/* If zero then there is no pending BINCL. */
-static int pending_bincls = 0;
-#endif
-
/* This is the top of the stack. */
static GTY(()) struct dbx_file *current_file;
@@ -241,6 +236,11 @@ static GTY(()) int lastfile_is_base;
#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
+#ifdef DBX_USE_BINCL
+/* If zero then there is no pending BINCL. */
+static int pending_bincls = 0;
+#endif
+
/* The original input file name. */
static const char *base_input_file;