+2019-11-21 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92596
+ * tree-vect-slp.c (vect_build_slp_tree): Fix pasto.
+
2019-11-21 Jan Hubicka <jh@suse.cz>
* ipa-fnsummary.c (evaluate_conditions_for_known_args): Be
+2019-11-21 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/92596
+ * gcc.dg/torture/pr92596-1.c: New testcase.
+
2019-11-21 Tamar Christina <tamar.christina@arm.com>
* gcc.dg/torture/fp-int-convert-timode-1.c: Add check for FE_TONEAREST.
--- /dev/null
+/* { dg-do compile } */
+/* { dg-additional-options "-ftree-slp-vectorize" } */
+
+typedef struct {
+ long n[5];
+} secp256k1_fe;
+
+void *a, *b;
+int c;
+static void
+fn1(secp256k1_fe *p1, int p2)
+{
+ p1->n[2] = p1->n[3] = p1->n[4] = p2;
+}
+void
+fn2()
+{
+ fn1(b, !c);
+ fn1(a, !c);
+}
return *leader;
}
poly_uint64 this_max_nunits = 1;
- slp_tree res = vect_build_slp_tree_2 (vinfo, stmts, group_size, max_nunits,
+ slp_tree res = vect_build_slp_tree_2 (vinfo, stmts, group_size,
+ &this_max_nunits,
matches, npermutes, tree_size, bst_map);
if (res)
{