From 0761f342c524819173182b1cb0ec75d02c2f709b Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Sat, 6 Sep 2003 21:33:46 +0000 Subject: [PATCH] * diagnostic.c (announce_function): Move to toplev.c. From-SVN: r71146 --- gcc/ChangeLog | 4 ++++ gcc/diagnostic.c | 17 ----------------- gcc/toplev.c | 17 +++++++++++++++++ 3 files changed, 21 insertions(+), 17 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 165751244a8..bfe7e952d42 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-09-06 Gabriel Dos Reis + + * diagnostic.c (announce_function): Move to toplev.c. + 2003-09-06 Zdenek Dvorak * gcse.c (expr_equiv_p): Don't consider anything to be equal to diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index c226815c42d..8d01a2b0561 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -279,23 +279,6 @@ diagnostic_action_after_output (diagnostic_context *context, } } -/* Called when the start of a function definition is parsed, - this function prints on stderr the name of the function. */ -void -announce_function (tree decl) -{ - if (!quiet_flag) - { - if (rtl_dump_and_exit) - verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl))); - else - verbatim (" %s", (*lang_hooks.decl_printable_name) (decl, 2)); - fflush (stderr); - global_dc->printer->need_newline = true; - diagnostic_set_last_function (global_dc); - } -} - /* The default function to print out name of current function that caused an error. */ void diff --git a/gcc/toplev.c b/gcc/toplev.c index b7d23b2ee43..462704c8fa3 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1205,6 +1205,23 @@ get_src_pwd (void) return src_pwd; } +/* Called when the start of a function definition is parsed, + this function prints on stderr the name of the function. */ +void +announce_function (tree decl) +{ + if (!quiet_flag) + { + if (rtl_dump_and_exit) + verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl))); + else + verbatim (" %s", (*lang_hooks.decl_printable_name) (decl, 2)); + fflush (stderr); + pp_needs_newline (global_dc->printer) = true; + diagnostic_set_last_function (global_dc); + } +} + /* Set up a default flag_random_seed and local_tick, unless the user already specified one. */ -- 2.11.4.GIT