mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-25 16:50:49 +08:00
tree-vect-slp.c (vect_supported_load_permutation_p): Avoid redef of outer loop index variable.
2014-02-03 Teresa Johnson <tejohnson@google.com> * tree-vect-slp.c (vect_supported_load_permutation_p): Avoid redef of outer loop index variable. From-SVN: r207437
This commit is contained in:
parent
5d77fb196b
commit
bddc974e71
@ -1,3 +1,8 @@
|
||||
2014-02-03 Teresa Johnson <tejohnson@google.com>
|
||||
|
||||
* tree-vect-slp.c (vect_supported_load_permutation_p): Avoid
|
||||
redef of outer loop index variable.
|
||||
|
||||
2014-02-03 Marc Glisse <marc.glisse@inria.fr>
|
||||
|
||||
PR c++/53017
|
||||
|
@ -1103,8 +1103,8 @@ vect_supported_load_permutation_p (slp_instance slp_instn)
|
||||
FOR_EACH_VEC_ELT (node->load_permutation, j, next)
|
||||
dump_printf (MSG_NOTE, "%d ", next);
|
||||
else
|
||||
for (i = 0; i < group_size; ++i)
|
||||
dump_printf (MSG_NOTE, "%d ", i);
|
||||
for (k = 0; k < group_size; ++k)
|
||||
dump_printf (MSG_NOTE, "%d ", k);
|
||||
dump_printf (MSG_NOTE, "\n");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user