diff options
author | Jason Merrill <jason@redhat.com> | 2000-12-04 12:14:16 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-12-04 12:14:16 -0500 |
commit | 62c079055503146a2ee52174e1cfce88da650a22 (patch) | |
tree | 7119c953b92ca42f59efef71f243458a0126d9b5 /gcc/diagnostic.c | |
parent | c6e13630ab73f1299d74209c6cf418d50fd752e9 (diff) | |
download | gcc-62c079055503146a2ee52174e1cfce88da650a22.zip gcc-62c079055503146a2ee52174e1cfce88da650a22.tar.gz gcc-62c079055503146a2ee52174e1cfce88da650a22.tar.bz2 |
stor-layout.c (int_mode_for_mode): Handle MODE_VECTOR_INT, MODE_VECTOR_FLOAT.
* stor-layout.c (int_mode_for_mode): Handle MODE_VECTOR_INT,
MODE_VECTOR_FLOAT.
* diagnostic.c (report_problematic_module): s/function/module/.
* c-lex.h: Remove decl for check_newline.
From-SVN: r38003
Diffstat (limited to 'gcc/diagnostic.c')
-rw-r--r-- | gcc/diagnostic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index e8c7cca..afd7a2d 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -1731,7 +1731,7 @@ report_problematic_module (buffer) } if (input_file_stack && input_file_stack->next != 0 - && error_function_changed ()) + && error_module_changed ()) { for (p = input_file_stack->next; p; p = p->next) if (p == input_file_stack->next) @@ -1741,7 +1741,7 @@ report_problematic_module (buffer) output_verbatim (buffer, ",\n from %s:%d", p->name, p->line); output_verbatim (buffer, ":\n"); - record_last_error_function (); + record_last_error_module (); } } |