From: Andreas Schwab Date: Wed, 2 Jul 2003 11:40:12 +0000 (+0000) Subject: * dbxout.c (pending_bincls): Only define if DBX_DEBUGGING_INFO. X-Git-Tag: releases/gcc-3.4.0~5229 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eaac6968d6102aa421ef9109d2440b520fad0a76;p=thirdparty%2Fgcc.git * dbxout.c (pending_bincls): Only define if DBX_DEBUGGING_INFO. From-SVN: r68829 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index edc420bec759..c832f2407345 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-07-02 Andreas Schwab + + * dbxout.c (pending_bincls): Only define if DBX_DEBUGGING_INFO. + 2003-07-02 Eric Botcazou PR optimization/11210 diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 603b8fafc9cc..f648bfe37850 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -195,8 +195,10 @@ struct dbx_file GTY(()) struct dbx_file *prev; /* Chain to traverse all pending bincls. */ }; +#ifdef DBX_DEBUGGING_INFO /* If zero then there is no pending BINCL. */ static int pending_bincls = 0; +#endif /* This is the top of the stack. */