diff options
author | dorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-09 11:06:20 +0000 |
---|---|---|
committer | dorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-09 11:06:20 +0000 |
commit | f61467c8a99f91213803b78b8ccade6f733a28d4 (patch) | |
tree | 73dffeb9a21616d6d2e8d1fd2faac7d6f0751b1c /gcc/target.h | |
parent | 16037b3108af0f2c006321eff56cbfc00ec50bd4 (diff) | |
download | gcc-f61467c8a99f91213803b78b8ccade6f733a28d4.tar.gz |
2004-12-09 Dorit Naishlos <dorit@il.ibm.com>
* genopinit.c (vec_realign_store_optab): Initialization removed.
* optabs.c (optab_for_tree_code): REALIGN_STORE_EXPR case removed.
* optabs.h (optab_index): OTI_vec_realign_store Removed.
(vec_realign_store_optab): Removed.
* target-def.h (TARGET_VECTORIZE_BUILTIN_MASK_FOR_STORE): Removed.
* target.h (builtin_mask_for_store): Removed.
* tree.def (REALIGN_STORE_EXPR): Removed.
* config/rs6000/rs6000.c (rs6000_builtin_mask_for_store): Removed.
(altivec_builtin_mask_for_store): Removed.
(altivec_init_builtins): Removed initialization of
altivec_builtin_mask_for_store.
* doc/tm.texi (TARGET_VECTORIZE_MISALIGNED_MEM_OK): New.
(TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91932 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/target.h')
-rw-r--r-- | gcc/target.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/target.h b/gcc/target.h index 4927d2bab4b..aa3542c476d 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -286,17 +286,16 @@ struct gcc_target struct vectorize { /* The following member value is a pointer to a function called - by the vectorizer, and when expanding a MISALIGNED_INDIREC_REF + by te vectorizer, and when expanding a MISALIGNED_INDIRECT_REF expression. If the hook returns true (false) then a move* pattern to/from memory can (cannot) be generated for this mode even if the memory location is unaligned. */ bool (* misaligned_mem_ok) (enum machine_mode); - /* The following member values are pointers to functions called + /* The following member value is a pointer to a function called by the vectorizer, and return the decl of the target builtin function. */ tree (* builtin_mask_for_load) (void); - tree (* builtin_mask_for_store) (void); } vectorize; /* Return machine mode for filter value. */ |