diff options
Diffstat (limited to 'gcc/dbxout.c')
| -rw-r--r-- | gcc/dbxout.c | 10 |
1 files changed, 5 insertions, 5 deletions
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; |
