diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-04-06 19:02:54 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-04-06 19:02:54 +0000 |
commit | 62e64b0b86d3e084eb7eddebf7187ae19efd9c7d (patch) | |
tree | c00dc7e74ea2b716ab31ae265c8f5aaf42604ce2 | |
parent | ce7e39367a180e676da3632bbfaa012a77a354d9 (diff) | |
download | gcc-62e64b0b86d3e084eb7eddebf7187ae19efd9c7d.zip gcc-62e64b0b86d3e084eb7eddebf7187ae19efd9c7d.tar.gz gcc-62e64b0b86d3e084eb7eddebf7187ae19efd9c7d.tar.bz2 |
dbxout.c (dbxout_handle_pch): Move prototype out from #if defined DBX_DEBUGGING_INFO.
* dbxout.c (dbxout_handle_pch): Move prototype out from
#if defined DBX_DEBUGGING_INFO.
From-SVN: r65307
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dbxout.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d186b36..91e9c67 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-04-06 Geoffrey Keating <geoffk@apple.com> + + * dbxout.c (dbxout_handle_pch): Move prototype out from + #if defined DBX_DEBUGGING_INFO. + 2003-04-05 Nathan Sidwell <nathan@codesourcery.com> * gcov.c (struct arc_info): Replace local_span with cycle. diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 3f5ace0..e3af08c 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -321,6 +321,7 @@ 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_global_decl PARAMS ((tree)); +static void dbxout_handle_pch PARAMS ((unsigned)); /* The debug hooks structure. */ #if defined (DBX_DEBUGGING_INFO) @@ -332,7 +333,6 @@ static void dbxout_begin_function PARAMS ((tree)); static void dbxout_begin_block PARAMS ((unsigned, unsigned)); static void dbxout_end_block PARAMS ((unsigned, unsigned)); static void dbxout_function_decl PARAMS ((tree)); -static void dbxout_handle_pch PARAMS ((unsigned)); const struct gcc_debug_hooks dbx_debug_hooks = { |