diff options
author | Neil Booth <neil@cat.daikokuya.demon.co.uk> | 2001-07-22 09:42:47 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-07-22 09:42:47 +0000 |
commit | 65ecca65ce6cc9170fb391bae7a07e82e1924440 (patch) | |
tree | 0d61bab33e60b3549c399f005e84779f8586b060 /gcc/dbxout.c | |
parent | 665e329311df8096714c918b5fe2da3d349c485f (diff) | |
download | gcc-65ecca65ce6cc9170fb391bae7a07e82e1924440.zip gcc-65ecca65ce6cc9170fb391bae7a07e82e1924440.tar.gz gcc-65ecca65ce6cc9170fb391bae7a07e82e1924440.tar.bz2 |
* dbxout.c, sdbout.c, varasm.c: Revert most recent patch.
From-SVN: r44237
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 183a65f..e7c2c54 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -313,7 +313,6 @@ static void dbxout_prepare_symbol PARAMS ((tree)); static void dbxout_finish_symbol PARAMS ((tree)); static void dbxout_block PARAMS ((tree, int, tree)); static void dbxout_begin_function PARAMS ((tree)); -static void dbxout_global_decl PARAMS ((tree)); /* The debug hooks structure. */ #if defined (DBX_DEBUGGING_INFO) @@ -344,7 +343,7 @@ struct gcc_debug_hooks dbx_debug_hooks = #endif debug_nothing_int, /* end_function */ dbxout_function_decl, - dbxout_global_decl, /* global_decl */ + debug_nothing_tree, /* global_decl */ debug_nothing_tree, /* deferred_inline_function */ debug_nothing_tree, /* outlining_inline_function */ debug_nothing_rtx /* label */ @@ -370,7 +369,7 @@ struct gcc_debug_hooks xcoff_debug_hooks = debug_nothing_tree, /* begin_function */ xcoffout_end_function, debug_nothing_tree, /* function_decl */ - dbxout_global_decl, /* global_decl */ + debug_nothing_tree, /* global_decl */ debug_nothing_tree, /* deferred_inline_function */ debug_nothing_tree, /* outlining_inline_function */ debug_nothing_rtx /* label */ @@ -624,15 +623,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; -{ - 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) |