+2020-03-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/94224
+ * gimple-ssa-store-merging.c
+ (imm_store_chain_info::coalesce_immediate): Don't consider overlapping
+ or adjacent INTEGER_CST rhs_code stores as mergeable if they have
+ different lp_nr.
+
2020-03-20 Andre Vieira <andre.simoesdiasvieira@arm.com>
* config/arm/arm.md (define_attr "conds"): Fix logic for neon and mve.
break;
if (info2->order < try_order)
{
- if (info2->rhs_code != INTEGER_CST)
+ if (info2->rhs_code != INTEGER_CST
+ || info2->lp_nr != merged_store->lp_nr)
{
/* Normally check_no_overlap makes sure this
doesn't happen, but if end grows below,
info2->bitpos + info2->bitsize);
}
else if (info2->rhs_code == INTEGER_CST
+ && info2->lp_nr == merged_store->lp_nr
&& !last_iter)
{
max_order = MAX (max_order, info2->order + 1);
+2020-03-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/94224
+ * g++.dg/tree-ssa/pr94224.C: New test.
+
2020-03-19 Jan Hubicka <hubicka@ucw.cz>
PR ipa/94202
--- /dev/null
+// PR tree-optimization/94224
+// { dg-do compile }
+// { dg-options "-O2 -fnon-call-exceptions -Wno-return-type" }
+
+void foo (int, int, long);
+
+static inline int
+bar (int &x)
+{
+ x = 0;
+}
+
+struct U
+{
+ int n, p;
+ long q;
+ bool *z;
+ int a;
+ U () : n (), z (), a (1) {}
+ ~U () { if (n) foo (p, n, q); }
+ void baz () { bar (a); }
+};
+
+struct W
+{
+ U w[2];
+ W () { w[0].baz (); }
+};
+
+void
+qux ()
+{
+ new W;
+}