diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-11-08 15:08:51 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-11-08 15:08:51 +0000 |
commit | a37336cf735255f3856b265bf40cf911466fd82b (patch) | |
tree | 63df6d80d1d73cec523bd698026355a061b895ec | |
parent | 587a98546ad19d26ab72ea25e1eb65aa15c32b91 (diff) | |
download | gcc-a37336cf735255f3856b265bf40cf911466fd82b.zip gcc-a37336cf735255f3856b265bf40cf911466fd82b.tar.gz gcc-a37336cf735255f3856b265bf40cf911466fd82b.tar.bz2 |
* dbxout.c (current_file): Wrap declaration in DBX_USE_BINCL.
From-SVN: r73363
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/dbxout.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a9a8643..a71a779 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-11-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * dbxout.c (current_file): Wrap declaration in DBX_USE_BINCL. + 2003-11-07 Geoffrey Keating <geoffk@apple.com> * config/rs6000/rs6000.c (rs6000_legitimize_address): Remove diff --git a/gcc/dbxout.c b/gcc/dbxout.c index e6b2c88..9419331 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -203,7 +203,9 @@ struct dbx_file should always be 0 because we should not have needed any file numbers yet. */ +#ifdef DBX_USE_BINCL static struct dbx_file *current_file; +#endif /* This is the next file number to use. */ |