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-Tag: misc/first-auto-changelog~491 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=380a681518c3b387476be1064097f24b0847726d;p=thirdparty%2Fgcc.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 ed91bfa4f4ed..e0dd54cdfe74 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 33210e1485b5..c41c7e3eb9b3 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);