OSDN Git Service

2000-08-22 Gabriel Dos Reis <gdr@codesourcery.com>
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Aug 2000 06:54:54 +0000 (06:54 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Aug 2000 06:54:54 +0000 (06:54 +0000)
* diagnostic.h (report_problematic_module): Declare.
* diagnostic.c (report_problematic_module): New function.
(report_error_function): Tweak.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35866 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/diagnostic.c
gcc/diagnostic.h

index f78083d..817b50f 100644 (file)
@@ -1,3 +1,9 @@
+2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
+
+       * diagnostic.h (report_problematic_module): Declare.
+       * diagnostic.c (report_problematic_module): New function.
+       (report_error_function): Tweak.
+
 Tue Aug 22 02:31:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * stmt.c (expand_goto_internal, fixup_gotos): Only check
index 7124ecd..35ca050 100644 (file)
@@ -1243,26 +1243,7 @@ void
 report_error_function (file)
   const char *file ATTRIBUTE_UNUSED;
 {
-  struct file_stack *p;
-
-  if (output_needs_newline (diagnostic_buffer))
-    {
-      verbatim ("\n");
-      output_needs_newline (diagnostic_buffer) = 0;
-    }
-
-  if (input_file_stack && input_file_stack->next != 0
-      && error_function_changed ())
-    {
-      for (p = input_file_stack->next; p; p = p->next)
-       if (p == input_file_stack->next)
-         verbatim ("In file included from %s:%d", p->name, p->line);
-       else
-         verbatim (",\n                 from %s:%d", p->name, p->line);
-      verbatim (":\n");
-      record_last_error_function ();
-    }
-
+  report_problematic_module (diagnostic_buffer);
   (*print_error_function) (input_filename);
 }
 
@@ -1677,6 +1658,33 @@ set_diagnostic_context (dc, message, args_ptr, file, line, warn)
   diagnostic_finalizer (dc) = lang_diagnostic_finalizer;
 }
 
+void
+report_problematic_module (buffer)
+     output_buffer *buffer;
+{
+  struct file_stack *p;
+
+  if (output_needs_newline (buffer))
+    {
+      output_verbatim (buffer, "\n");
+      output_needs_newline (buffer) = 0;
+    }
+
+  if (input_file_stack && input_file_stack->next != 0
+      && error_function_changed ())
+    {
+      for (p = input_file_stack->next; p; p = p->next)
+       if (p == input_file_stack->next)
+         output_verbatim
+            (buffer, "In file included from %s:%d", p->name, p->line);
+       else
+         output_verbatim
+            (buffer, ",\n                 from %s:%d", p->name, p->line);
+      output_verbatim (buffer, ":\n");
+      record_last_error_function ();
+    }
+}
+
 static void
 default_diagnostic_starter (buffer, dc)
      output_buffer *buffer;
index e3450ce..e93a77b 100644 (file)
@@ -195,6 +195,6 @@ int error_module_changed        PARAMS ((void));
 void record_last_error_module   PARAMS ((void));
 int error_function_changed      PARAMS ((void));
 void record_last_error_function PARAMS ((void));
-     
+void report_problematic_module  PARAMS ((output_buffer *));     
 
 #endif /* __GCC_DIAGNOSTIC_H__ */