2014-10-03 Jakub Jelinek <jakub@redhat.com>
+ * tree-vect-data-refs.c (vect_permute_load_chain,
+ vect_shift_permute_load_chain): Fix a typo in temporary var names,
+ suffle3 to shuffle3.
+
PR libgomp/61200
* omp-low.c (taskreg_contexts): New variable.
(scan_omp_parallel): Push newly created context into taskreg_contexts
/* Create interleaving stmt (low part of):
low = VEC_PERM_EXPR <first_vect, second_vect2, {k, 3 + k, 6 + k,
...}> */
- data_ref = make_temp_ssa_name (vectype, NULL, "vect_suffle3_low");
+ data_ref = make_temp_ssa_name (vectype, NULL, "vect_shuffle3_low");
perm_stmt = gimple_build_assign_with_ops (VEC_PERM_EXPR, data_ref,
first_vect, second_vect,
perm3_mask_low);
...}> */
first_vect = data_ref;
second_vect = dr_chain[2];
- data_ref = make_temp_ssa_name (vectype, NULL, "vect_suffle3_high");
+ data_ref = make_temp_ssa_name (vectype, NULL, "vect_shuffle3_high");
perm_stmt = gimple_build_assign_with_ops (VEC_PERM_EXPR, data_ref,
first_vect, second_vect,
perm3_mask_high);
for (k = 0; k < 3; k++)
{
- data_ref = make_temp_ssa_name (vectype, NULL, "vect_suffle3");
+ data_ref = make_temp_ssa_name (vectype, NULL, "vect_shuffle3");
perm_stmt = gimple_build_assign_with_ops (VEC_PERM_EXPR, data_ref,
dr_chain[k], dr_chain[k],
perm3_mask);