re PR tree-optimization/63512 (ICE: error: virtual use of statement not up-to-date)
authorRichard Biener <rguenther@suse.de>
Tue, 14 Oct 2014 07:36:02 +0000 (07:36 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Tue, 14 Oct 2014 07:36:02 +0000 (07:36 +0000)
2014-10-14  Richard Biener  <rguenther@suse.de>

PR tree-optimization/63512
* tree-ssa-pre.c (create_expression_by_pieces): Mark stmts
modified.

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

From-SVN: r216174

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

index 2890d52df988bc31e7b02d4425ea50262e5f928e..c7aa8f603f4044aefdb1291cd5c3cb83d788a35b 100644 (file)
@@ -1,3 +1,9 @@
+2014-10-14  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/63512
+       * tree-ssa-pre.c (create_expression_by_pieces): Mark stmts
+       modified.
+
 2014-10-14  Oleg Endo  <olegendo@gcc.gnu.org>
 
        PR target/63260
index d42991f0120e545acdc1087725a1b02a9bff72e7..59aca0d68c194fa8452df60261b1f7eb10457fd9 100644 (file)
@@ -1,3 +1,8 @@
+2014-10-14  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/63512
+       * g++.dg/torture/pr63512.C: New testcase.
+
 2014-10-14  Oleg Endo  <olegendo@gcc.gnu.org>
 
        PR target/63260
diff --git a/gcc/testsuite/g++.dg/torture/pr63512.C b/gcc/testsuite/g++.dg/torture/pr63512.C
new file mode 100644 (file)
index 0000000..9549014
--- /dev/null
@@ -0,0 +1,46 @@
+// { dg-do compile }
+
+extern "C" {
+void __assert_fail ();
+unsigned long strlen (const char *);
+}
+class A
+{
+  int Data;
+  int Length;
+
+public:
+  A (const char *p1) : Data ()
+  {
+    p1 ? void() : __assert_fail ();
+    Length = strlen (p1);
+  }
+};
+enum TokenKind
+{
+  semi
+};
+class B
+{
+public:
+  void m_fn1 ();
+};
+class C
+{
+  void m_fn2 (TokenKind, int, A);
+  struct D
+  {
+    D (int);
+    B Range;
+  };
+  int *m_fn3 (const int &, int &, int **);
+};
+int a, b;
+int *
+C::m_fn3 (const int &, int &, int **)
+{
+  D c (0);
+  if (a)
+    c.Range.m_fn1 ();
+  m_fn2 (semi, 0, b ? "" : a ? "alias declaration" : "using declaration");
+}
index 60ff70fa42b09c2374327973ff753e0f9a1e60d6..c3dad70db0195a12a521cbe403107ba8844c97b1 100644 (file)
@@ -2897,6 +2897,7 @@ create_expression_by_pieces (basic_block block, pre_expr expr,
            }
 
          gimple_set_vuse (stmt, BB_LIVE_VOP_ON_EXIT (block));
+         gimple_set_modified (stmt, true);
        }
       gimple_seq_add_seq (stmts, forced_stmts);
     }
@@ -2904,6 +2905,7 @@ create_expression_by_pieces (basic_block block, pre_expr expr,
   name = make_temp_ssa_name (exprtype, NULL, "pretmp");
   newstmt = gimple_build_assign (name, folded);
   gimple_set_vuse (newstmt, BB_LIVE_VOP_ON_EXIT (block));
+  gimple_set_modified (newstmt, true);
   gimple_set_plf (newstmt, NECESSARY, false);
 
   gimple_seq_add_stmt (stmts, newstmt);