re PR middle-end/84233 (ICE (segfault) in gimple_assign_rhs_code)
authorRichard Biener <rguenther@suse.de>
Thu, 8 Feb 2018 13:29:15 +0000 (13:29 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 8 Feb 2018 13:29:15 +0000 (13:29 +0000)
2018-02-08  Richard Biener  <rguenther@suse.de>

PR tree-optimization/84233
* tree-ssa-phiprop.c (propagate_with_phi): Use separate
changed flag instead of boguously re-using phi_inserted.

* g++.dg/torture/pr84233.C: New testcase.

From-SVN: r257486

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr84233.C [new file with mode: 0644]
gcc/tree-ssa-phiprop.c

index 770d408fa16387c52e803170a5c476745d661365..f26472ada037d335d48ed7c42a863844f6c30be3 100644 (file)
@@ -1,3 +1,9 @@
+2018-02-08  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/84233
+       * tree-ssa-phiprop.c (propagate_with_phi): Use separate
+       changed flag instead of boguously re-using phi_inserted.
+
 2018-02-08  Martin Jambor  <mjambor@suse.cz>
 
        * hsa-gen.c (get_symbol_for_decl): Set program allocation for
index 5146f7ba612eeb272ab4807e00cd213d45327131..5b83f3aff8e61da03595827914189c8cd12a4358 100644 (file)
@@ -1,3 +1,8 @@
+2018-02-08  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/84233
+       * g++.dg/torture/pr84233.C: New testcase.
+
 2018-02-08  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/84278
diff --git a/gcc/testsuite/g++.dg/torture/pr84233.C b/gcc/testsuite/g++.dg/torture/pr84233.C
new file mode 100644 (file)
index 0000000..d45a830
--- /dev/null
@@ -0,0 +1,25 @@
+// { dg-do compile }
+// { dg-additional-options "-w" }
+
+void a(const char *, int, const char *, const char *);
+template <typename b> void c(b);
+struct d {
+    long e;
+    template <typename> union f;
+    template <typename h> union f<h *> {
+       f(h *i) : j(i) {}
+       h *j;
+       long bits;
+    };
+    static int k(volatile long &i) { return *(int *)f<volatile long *>(&i).bits; }
+    typedef long g;
+    operator g() volatile {
+       int l = k(e);
+       c(l);
+    }
+};
+struct : d {
+        } m, n;
+bool o;
+void p() { (o ? m : n) ? (void)0 : a("", 5, "", ""); }
+
index fad81d02ba981dbb03e04abb021b18dc6dcf0e10..03dbb390bf87bb14fe01480eca9a748feaecfa13 100644 (file)
@@ -270,6 +270,7 @@ propagate_with_phi (basic_block bb, gphi *phi, struct phiprop_d *phivn,
   use_operand_p arg_p, use;
   ssa_op_iter i;
   bool phi_inserted;
+  bool changed;
   tree type = NULL_TREE;
 
   if (!POINTER_TYPE_P (TREE_TYPE (ptr))
@@ -317,6 +318,7 @@ propagate_with_phi (basic_block bb, gphi *phi, struct phiprop_d *phivn,
   /* Replace the first dereference of *ptr if there is one and if we
      can move the loads to the place of the ptr phi node.  */
   phi_inserted = false;
+  changed = false;
   FOR_EACH_IMM_USE_STMT (use_stmt, ui, ptr)
     {
       gimple *def_stmt;
@@ -403,7 +405,7 @@ propagate_with_phi (basic_block bb, gphi *phi, struct phiprop_d *phivn,
          unlink_stmt_vdef (use_stmt);
          gsi_remove (&gsi, true);
 
-         phi_inserted = true;
+         changed = true;
        }
 
       /* Found a proper dereference.  Insert a phi node if this
@@ -424,6 +426,7 @@ propagate_with_phi (basic_block bb, gphi *phi, struct phiprop_d *phivn,
          gsi_remove (&gsi, true);
 
          phi_inserted = true;
+         changed = true;
        }
       else
        {
@@ -431,13 +434,14 @@ propagate_with_phi (basic_block bb, gphi *phi, struct phiprop_d *phivn,
             load.  */
          gimple_assign_set_rhs1 (use_stmt, res);
          update_stmt (use_stmt);
+         changed = true;
        }
 
 next:;
       /* Continue searching for a proper dereference.  */
     }
 
-  return phi_inserted;
+  return changed;
 }
 
 /* Main entry for phiprop pass.  */