aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2020-11-04 09:36:05 +0100
committerRichard Biener <rguenther@suse.de>2020-11-04 09:37:43 +0100
commit8d887367a7a3bc2cf1ca926899567aeeba915e44 (patch)
tree6dc7ca70c54e04703173a24798baec6c04577224 /gcc
parent7526923d77eead9e18e827ba22a3933933f7df12 (diff)
downloadgcc-8d887367a7a3bc2cf1ca926899567aeeba915e44.zip
gcc-8d887367a7a3bc2cf1ca926899567aeeba915e44.tar.gz
gcc-8d887367a7a3bc2cf1ca926899567aeeba915e44.tar.bz2
bootstrap/97666 - really fix sizeof (bool) issue
Pastoed the previous fix too quickly, the following fixes the correct spot - the memset, not the allocation. 2020-11-04 Richard Biener <rguenther@suse.de> PR bootstrap/97666 * tree-vect-slp.c (vect_build_slp_tree_2): Revert previous fix and instead adjust the memset.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree-vect-slp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vect-slp.c b/gcc/tree-vect-slp.c
index 08018a1..11fe685 100644
--- a/gcc/tree-vect-slp.c
+++ b/gcc/tree-vect-slp.c
@@ -1428,8 +1428,8 @@ vect_build_slp_tree_2 (vec_info *vinfo, slp_tree node,
/* If the SLP node is a PHI (induction or reduction), terminate
the recursion. */
- bool *skip_args = XALLOCAVEC (bool, sizeof (bool) * nops);
- memset (skip_args, 0, nops);
+ bool *skip_args = XALLOCAVEC (bool, nops);
+ memset (skip_args, 0, sizeof (bool) * nops);
if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (vinfo))
if (gphi *stmt = dyn_cast <gphi *> (stmt_info->stmt))
{