diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-25 17:06:41 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-25 17:06:41 +0000 |
commit | ad92037a0defae40f46ee012e85e7caa00adc7e7 (patch) | |
tree | 5cf30d09267a9dff332f16da7d0bc48a305e7975 /gcc/target-def.h | |
parent | e03b58301e91dccb9cad7022a8c1c17b1cb2f915 (diff) | |
download | gcc-ad92037a0defae40f46ee012e85e7caa00adc7e7.tar.gz |
003-02-20 Aldy Hernandez <aldyh@redhat.com>
* doc/tm.texi: Document Rename TARGET_VECTOR_TYPES_COMPATIBLE to
TARGET_VECTOR_OPAQUE_P. Document accordingly.
* testsuite/gcc.dg/20030218-1.c: Check that initialization of
opaque types fail.
* c-typeck.c (comptypes): Change call to vector_types_compatible
to vector_opaque_p.
(convert_for_assignment): Call vector_opaque_p instead of
vector_types_compatible.
(really_start_incremental_init): Disallow initialization of opaque
types.
* target-def.h: Remove TARGET_VECTOR_TYPES_COMPATIBLE.
Define TARGET_VECTOR_OPAQUE_P.
(TARGET_INITIALIZER): Same.
* target.h (struct gcc_target): Remove vector_types_compatible.
Add vector_opaque_p.
* config/rs6000/rs6000.c (rs6000_spe_vector_types_compatible):
Remove.
(is_ev64_opaque_type): Check for TARGET_SPE and make sure type is
a vector type. Change return type to bool.
(TARGET_VECTOR_TYPES_COMPATIBLE): Remove.
(TARGET_VECTOR_OPAQUE_P): Define.
* cp/parser.c (cp_parser_init_declarator): Call vector_opaque_p
target hook.
Include target.h.
(cp_parser_init_declarator): Fix typo in function comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63411 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/target-def.h')
-rw-r--r-- | gcc/target-def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/target-def.h b/gcc/target-def.h index 57d6e98e80a..a7f84c165eb 100644 --- a/gcc/target-def.h +++ b/gcc/target-def.h @@ -256,8 +256,8 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define TARGET_VALID_POINTER_MODE default_valid_pointer_mode #endif -#ifndef TARGET_VECTOR_TYPES_COMPATIBLE -#define TARGET_VECTOR_TYPES_COMPATIBLE hook_bool_tree_tree_false +#ifndef TARGET_VECTOR_OPAQUE_P +#define TARGET_VECTOR_OPAQUE_P hook_bool_tree_false #endif /* In hook.c. */ @@ -307,7 +307,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. TARGET_ENCODE_SECTION_INFO, \ TARGET_STRIP_NAME_ENCODING, \ TARGET_VALID_POINTER_MODE, \ - TARGET_VECTOR_TYPES_COMPATIBLE, \ + TARGET_VECTOR_OPAQUE_P, \ TARGET_RTX_COSTS, \ TARGET_ADDRESS_COST, \ TARGET_HAVE_NAMED_SECTIONS, \ |