OSDN Git Service

* diagnostic.c (announce_function): Move to toplev.c.
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 6 Sep 2003 21:33:46 +0000 (21:33 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 6 Sep 2003 21:33:46 +0000 (21:33 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71146 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/diagnostic.c
gcc/toplev.c

index 1657512..bfe7e95 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-06  Gabriel Dos Reis  <gdr@integrable-solutions.net>
+
+       * diagnostic.c (announce_function): Move to toplev.c.
+
 2003-09-06  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
 
        * gcse.c (expr_equiv_p): Don't consider anything to be equal to
index c226815..8d01a2b 100644 (file)
@@ -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
index b7d23b2..462704c 100644 (file)
@@ -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.  */