mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-10 02:06:59 +08:00
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
This commit is contained in:
parent
dd107e6641
commit
8837d828e7
@ -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.
|
||||
|
10
gcc/dbxout.c
10
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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user