diff options
author | Juzhe-Zhong <juzhe.zhong@rivai.ai> | 2023-11-01 08:50:51 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2023-11-01 08:52:46 +0800 |
commit | c9bb20f7c90471c87236d4fe795e2099111cc746 (patch) | |
tree | 1bb6596dc08d5be537ab382a356c70dbe6cff3a8 | |
parent | eac0917bd3d2ead4829d56c8f2769176087c7b3d (diff) | |
download | gcc-c9bb20f7c90471c87236d4fe795e2099111cc746.zip gcc-c9bb20f7c90471c87236d4fe795e2099111cc746.tar.gz gcc-c9bb20f7c90471c87236d4fe795e2099111cc746.tar.bz2 |
NFC: Fix whitespace
Notice there is a whitspace issue in previous commit:
https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=f66b2fc122b8a17591afbb881d580b32e8ddb708
Sorry for missing fixing this whitespace.
Committed as it is obvious.
gcc/ChangeLog:
* tree-vect-slp.cc (vect_build_slp_tree_1): Fix whitespace.
-rw-r--r-- | gcc/tree-vect-slp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc index b78133f..43d742e 100644 --- a/gcc/tree-vect-slp.cc +++ b/gcc/tree-vect-slp.cc @@ -1427,7 +1427,7 @@ vect_build_slp_tree_1 (vec_info *vinfo, unsigned char *swap, if (DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info)) && rhs_code != CFN_GATHER_LOAD && rhs_code != CFN_MASK_GATHER_LOAD - && rhs_code != CFN_MASK_LEN_GATHER_LOAD + && rhs_code != CFN_MASK_LEN_GATHER_LOAD && !STMT_VINFO_GATHER_SCATTER_P (stmt_info) /* Not grouped loads are handled as externals for BB vectorization. For loop vectorization we can handle |