gcc/
* tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
has a proper number of elements.
From-SVN: r234104
+2016-03-10 Ilya Enkovich <enkovich.gnu@gmail.com>
+
+ * tree-vect-stmts.c (vectorizable_mask_load_store): Check mask
+ has a proper number of elements.
+
2016-03-10 Alan Modra <amodra@gmail.com>
PR rtl-optimization/69195
if (!mask_vectype)
mask_vectype = get_mask_type_for_scalar_type (TREE_TYPE (vectype));
- if (!mask_vectype || !VECTOR_BOOLEAN_TYPE_P (mask_vectype))
+ if (!mask_vectype || !VECTOR_BOOLEAN_TYPE_P (mask_vectype)
+ || TYPE_VECTOR_SUBPARTS (mask_vectype) != TYPE_VECTOR_SUBPARTS (vectype))
return false;
if (is_store)