summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-04 17:14:16 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-04 17:14:16 +0000
commitd76983d115c7eb7f95059784c45944f1330a259a (patch)
tree7119c953b92ca42f59efef71f243458a0126d9b5
parentbb50513936b67511b40f7cd693e6c942c5c1c3a7 (diff)
downloadgcc-d76983d115c7eb7f95059784c45944f1330a259a.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38003 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog9
-rw-r--r--gcc/c-lex.h1
-rw-r--r--gcc/diagnostic.c4
-rw-r--r--gcc/stor-layout.c2
4 files changed, 13 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f0faacafd91..9bdfe095955 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,12 @@
+2000-12-04 Jason Merrill <jason@redhat.com>
+
+ * 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.
+
2000-12-04 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* README.APOLLO: Remove obsolete file.
diff --git a/gcc/c-lex.h b/gcc/c-lex.h
index 17fdc0735d2..bfdc2abfbe7 100644
--- a/gcc/c-lex.h
+++ b/gcc/c-lex.h
@@ -23,7 +23,6 @@ Boston, MA 02111-1307, USA. */
extern tree make_pointer_declarator PARAMS ((tree, tree));
extern void position_after_white_space PARAMS ((void));
-extern int check_newline PARAMS ((void));
extern int c_lex PARAMS ((tree *));
extern const char *init_c_lex PARAMS ((const char *));
diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c
index e8c7cca7846..afd7a2d6427 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 ();
}
}
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index c03ccddb7ca..7fb7f2a1ddf 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -227,6 +227,8 @@ int_mode_for_mode (mode)
case MODE_COMPLEX_INT:
case MODE_COMPLEX_FLOAT:
case MODE_FLOAT:
+ case MODE_VECTOR_INT:
+ case MODE_VECTOR_FLOAT:
mode = mode_for_size (GET_MODE_BITSIZE (mode), MODE_INT, 0);
break;