tree-vect-data-refs.c (vect_permute_load_chain, [...]): Fix a typo in temporary var...
authorJakub Jelinek <jakub@redhat.com>
Fri, 3 Oct 2014 08:15:03 +0000 (10:15 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 3 Oct 2014 08:15:03 +0000 (10:15 +0200)
* tree-vect-data-refs.c (vect_permute_load_chain,
vect_shift_permute_load_chain): Fix a typo in temporary var names,
suffle3 to shuffle3.

From-SVN: r215837

gcc/ChangeLog
gcc/tree-vect-data-refs.c

index 9326c8f..4a7366d 100644 (file)
@@ -1,5 +1,9 @@
 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
index b56348a..e4befc0 100644 (file)
@@ -5185,7 +5185,7 @@ vect_permute_load_chain (vec<tree> dr_chain,
          /* 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);
@@ -5196,7 +5196,7 @@ vect_permute_load_chain (vec<tree> dr_chain,
                                                              ...}>  */
          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);
@@ -5538,7 +5538,7 @@ vect_shift_permute_load_chain (vec<tree> dr_chain,
 
       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);