tree-optimization/101861 - fix gather use for non-gather refs
authorRichard Biener <rguenther@suse.de>
Wed, 11 Aug 2021 09:49:10 +0000 (11:49 +0200)
committerRichard Biener <rguenther@suse.de>
Wed, 11 Aug 2021 10:55:24 +0000 (12:55 +0200)
My previous change broke the usage of gather for strided loads.
The following fixes it.

2021-08-11  Richard Biener  <rguenther@suse.de>

PR tree-optimization/101861
* tree-vect-stmts.c (vectorizable_load): Fix error in
previous change with regard to gather vectorization.

gcc/tree-vect-stmts.c

index ab402b5..cc6c091 100644 (file)
@@ -9492,7 +9492,8 @@ vectorizable_load (vec_info *vinfo,
                    if (memory_access_type == VMAT_GATHER_SCATTER
                        && gs_info.ifn != IFN_LAST)
                      {
-                       vec_offset = vec_offsets[j];
+                       if (STMT_VINFO_GATHER_SCATTER_P (stmt_info))
+                         vec_offset = vec_offsets[j];
                        tree zero = build_zero_cst (vectype);
                        tree scale = size_int (gs_info.scale);
                        gcall *call;