diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-26 06:56:13 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-26 06:56:13 +0000 |
commit | 397c7bc7c84bfe275f7411462c20006e1fe06d3b (patch) | |
tree | 4ae0c09398bfea9241b677632feb032a1ae1e43c /gcc/dbxout.c | |
parent | 92ab22406330db7b84562e775c413f4227ff6e67 (diff) | |
download | gcc-397c7bc7c84bfe275f7411462c20006e1fe06d3b.tar.gz |
* toplev.c, varasm.c, final.c: Include xcoffout.h if appropriate.
* dbxout.c (dbxout_global_decl): Move outside #ifdef.
* Makefile.in (varasm.o, final.o, toplev.o): Update dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44382 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 7589f69f6b0..0d330c22653 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -625,18 +625,6 @@ dbxout_end_block (line, n) ASM_OUTPUT_INTERNAL_LABEL (asmfile, "LBE", n); } -/* Debug information for a global DECL. Called from toplev.c after - compilation proper has finished. */ -static void -dbxout_global_decl (decl) - tree decl; -{ - if (TREE_CODE (decl) == VAR_DECL - && ! DECL_EXTERNAL (decl) - && DECL_RTL_SET_P (decl)) /* Not necessary? */ - dbxout_symbol (decl, 0); -} - /* Output dbx data for a function definition. This includes a definition of the function name itself (a symbol), definitions of the parameters (locating them in the parameter list) @@ -666,6 +654,18 @@ dbxout_function_decl (decl) #endif /* DBX_DEBUGGING_INFO */ +/* Debug information for a global DECL. Called from toplev.c after + compilation proper has finished. */ +static void +dbxout_global_decl (decl) + tree decl; +{ + if (TREE_CODE (decl) == VAR_DECL + && ! DECL_EXTERNAL (decl) + && DECL_RTL_SET_P (decl)) /* Not necessary? */ + dbxout_symbol (decl, 0); +} + /* At the end of compilation, finish writing the symbol table. Unless you define DBX_OUTPUT_MAIN_SOURCE_FILE_END, the default is to do nothing. */ |