diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-12 23:35:19 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-12 23:35:19 +0000 |
commit | fdcda62346a155c68b6b5115f9c7fb0c3346a5e5 (patch) | |
tree | 408560e40020488c93b190b9d9dda4185de9652a /gcc/dbxout.c | |
parent | 73ae3ef72f8c419fc963cd401e8cc2ef53d9434b (diff) | |
download | gcc-fdcda62346a155c68b6b5115f9c7fb0c3346a5e5.tar.gz |
* dbxout.c: Move declaration of dbxout_type_decl outside
#ifdef DBX_DEBUGGING_INFO.
* c-parse.in: Don't give the asmdef production a type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77732 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 0fe6c0bd2c8..899d2cd7cff 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -365,6 +365,7 @@ static void dbxout_prepare_symbol (tree); static void dbxout_finish_symbol (tree); static void dbxout_block (tree, int, tree); static void dbxout_global_decl (tree); +static void dbxout_type_decl (tree, int); static void dbxout_handle_pch (unsigned); /* The debug hooks structure. */ @@ -377,7 +378,6 @@ static void dbxout_begin_function (tree); static void dbxout_begin_block (unsigned, unsigned); static void dbxout_end_block (unsigned, unsigned); static void dbxout_function_decl (tree); -static void dbxout_type_decl (tree, int); const struct gcc_debug_hooks dbx_debug_hooks = { |