diff options
author | Nick Clifton <nickc@redhat.com> | 2003-02-19 00:41:44 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2003-02-19 00:41:44 +0000 |
commit | 22d324c166a03be0b1273664165caba367072d3d (patch) | |
tree | 1ee8947912f75d5f23dee6e0a9f74a22b98bec04 | |
parent | 56bba8cf57d0aa75d0266486595efe0d070af0b7 (diff) | |
download | gcc-22d324c166a03be0b1273664165caba367072d3d.zip gcc-22d324c166a03be0b1273664165caba367072d3d.tar.gz gcc-22d324c166a03be0b1273664165caba367072d3d.tar.bz2 |
003-02-18 Nick Clifton <nickc@redhat.com>
Aldy Hernandez <aldyh@redhat.com>
* testsuite/gcc.dg/20030218-1.c: New.
* doc/tm.texi: Document TARGET_VECTOR_TYPES_COMPATIBLE.
* target-def.h (TARGET_INITIALIZER): Add
TARGET_VECTOR_TYPES_COMPATIBLE.
(TARGET_VECTOR_TYPES_COMPATIBLE): New macro.
* target.h (struct gcc_target): Add field vector_types_compatible.
* c-typeck.c (comptypes): Take into account
TARGET_VECTOR_TYPES_COMPATIBLE.
(convert_for_assignment): Same.
(really_start_incremental_init): Disallow initialization of
ev64_opaque types.
* config/rs6000/rs6000.c (is_ev64_opaque_type): New.
(rs6000_spe_vector_types_compatible): New.
(TARGET_VECTOR_TYPES_COMPATIBLE): Define.
From-SVN: r63078
-rw-r--r-- | gcc/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4e3b347..b03ad95 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,26 @@ +003-02-18 Nick Clifton <nickc@redhat.com> + Aldy Hernandez <aldyh@redhat.com> + + * testsuite/gcc.dg/20030218-1.c: New. + + * doc/tm.texi: Document TARGET_VECTOR_TYPES_COMPATIBLE. + + * target-def.h (TARGET_INITIALIZER): Add + TARGET_VECTOR_TYPES_COMPATIBLE. + (TARGET_VECTOR_TYPES_COMPATIBLE): New macro. + + * target.h (struct gcc_target): Add field vector_types_compatible. + + * c-typeck.c (comptypes): Take into account + TARGET_VECTOR_TYPES_COMPATIBLE. + (convert_for_assignment): Same. + (really_start_incremental_init): Disallow initialization of + ev64_opaque types. + + * config/rs6000/rs6000.c (is_ev64_opaque_type): New. + (rs6000_spe_vector_types_compatible): New. + (TARGET_VECTOR_TYPES_COMPATIBLE): Define. + 2003-02-19 Andreas Schwab <schwab@suse.de> * Makefile.in (toplev.o): Depend on $(LANGHOOKS_DEF_H). |