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.
/* 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))
{