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/stor-layout.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/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index c03ccdd..7fb7f2a 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; |