From: Richard Biener Date: Wed, 6 May 2020 08:46:22 +0000 (+0200) Subject: tree-optimization/94965 - fix typo in vec_info * passing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=380a681518c3b387476be1064097f24b0847726d;p=gcc.git tree-optimization/94965 - fix typo in vec_info * passing Should have passed vinfo, not loop_vinfo. 2020-05-06 Richard Biener PR tree-optimization/94965 * tree-vect-stmts.c (vectorizable_load): Fix typo. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed91bfa4f4e..e0dd54cdfe7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2020-05-06 Richard Biener + + PR tree-optimization/94965 + * tree-vect-stmts.c (vectorizable_load): Fix typo. + 2020-05-06 Rainer Orth * doc/install.texi: Replace Sun with Solaris as appropriate. diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index 33210e1485b..c41c7e3eb9b 100644 --- a/gcc/tree-vect-stmts.c +++ b/gcc/tree-vect-stmts.c @@ -9364,7 +9364,7 @@ vectorizable_load (vec_info *vinfo, initialized yet, use first_stmt_info_for_drptr DR by bumping the distance from first_stmt_info DR instead as below. */ if (!diff_first_stmt_info) - msq = vect_setup_realignment (loop_vinfo, + msq = vect_setup_realignment (vinfo, first_stmt_info, gsi, &realignment_token, alignment_support_scheme, NULL_TREE, &at_loop);