diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-22 16:58:15 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-22 16:58:15 +0000 |
commit | df49acff52222b5269449717978301edf1765aa9 (patch) | |
tree | de550c554cad949d0e4c8f0a87c50e82d7490b84 /gcc/dbxout.c | |
parent | 13850fdbd91b00d27a4ae0f585e96a77e267fe8e (diff) | |
download | gcc-df49acff52222b5269449717978301edf1765aa9.tar.gz |
* dbxout.c (get_lang_number): Do not define if
DBX_OUTPUT_MAIN_SOURCE_DIRECTORY is defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87868 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index f822feef799..22eaf27dfb7 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -343,7 +343,9 @@ static void emit_pending_bincls (void); static inline void emit_pending_bincls_if_required (void); static void dbxout_init (const char *); +#ifndef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY static unsigned int get_lang_number (void); +#endif static void dbxout_finish (const char *); static void dbxout_start_source_file (unsigned, const char *); static void dbxout_end_source_file (unsigned); @@ -490,6 +492,7 @@ dbxout_function_end (void) } #endif /* DBX_DEBUGGING_INFO */ +#ifndef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY /* Get lang description for N_SO stab. */ static unsigned int @@ -513,6 +516,7 @@ get_lang_number (void) return 0; } +#endif /* At the beginning of compilation, start writing the symbol table. Initialize `typevec' and output the standard data types of C. */ |