]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR middle-end/45310 (ICE: verify_stmts failed: Dead STMT in EH table with -O1...
authorSteven Bosscher <steven@gcc.gnu.org>
Tue, 21 Dec 2010 15:02:02 +0000 (15:02 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Tue, 21 Dec 2010 15:02:02 +0000 (15:02 +0000)
gcc/
PR middle-end/45310
* tree-ssa-phiprop.c (propagate_with_phi): Remove statement
completely from the function, including EH traces.

testsuite/
PR middle-end/45310
* g++.dg/pr45310.C: New test.

From-SVN: r168120

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

diff --git a/gcc/testsuite/g++.dg/pr45310.C b/gcc/testsuite/g++.dg/pr45310.C
new file mode 100644 (file)
index 0000000..335c782
--- /dev/null
@@ -0,0 +1,31 @@
+/* { dg-do compile } */
+/* { dg-options "-O1 -fnon-call-exceptions" }  */
+
+static inline const int &
+max (const int &a, const int &b)
+{
+  return a ? a : b;
+}
+
+static inline int
+baz ()
+{
+  return max (0, 0);
+}
+
+struct S
+{
+  ~S ()
+  {
+    baz ();
+  }
+};
+
+void bar ();
+void
+foo ()
+{
+  S s;
+  bar ();
+}
+
index 614546bed120d71d19e35da6031ee9e6fe3c1cc7..a38e6962f951597f058d7e76e359f4541e32edea 100644 (file)
@@ -352,7 +352,7 @@ propagate_with_phi (basic_block bb, gimple phi, struct phiprop_d *phivn,
             want to delete it here we also have to delete all intermediate
             copies.  */
          gsi = gsi_for_stmt (use_stmt);
-         gsi_remove (&gsi, false);
+         gsi_remove (&gsi, true);
 
          phi_inserted = true;
        }