c++: -fmerge-all-constants vs. destructors [PR91529]
authorJason Merrill <jason@redhat.com>
Fri, 1 May 2020 17:53:32 +0000 (13:53 -0400)
committerJason Merrill <jason@redhat.com>
Fri, 1 May 2020 17:53:33 +0000 (13:53 -0400)
cp_finish_decl avoids setting TREE_READONLY on TREE_STATIC variables that
have non-constant construction or destruction, but -fmerge-all-constants was
converting an automatic variable to static while leaving TREE_READONLY set.

Fixed by clearing the flag in cp_finish_decl in the presence of
-fmerge-all-constants.

gcc/cp/ChangeLog
2020-05-01  Jason Merrill  <jason@redhat.com>

PR c++/91529
* decl.c (cp_finish_decl): Also clear TREE_READONLY if
-fmerge-all-constants.

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/g++.dg/init/const14.C [new file with mode: 0644]

index 039e946f9507268d26d38ba232e9fcec489c5140..44686909c8340f1a999f6970007d838de9ab7ab4 100644 (file)
@@ -1,3 +1,9 @@
+2020-05-01  Jason Merrill  <jason@redhat.com>
+
+       PR c++/91529
+       * decl.c (cp_finish_decl): Also clear TREE_READONLY if
+       -fmerge-all-constants.
+
 2020-05-01  Jason Merrill  <jason@redhat.com>
 
        PR c++/93822
index 4c0ae1cfa2ed455d224aaffa37ee4b319a14016b..3e7ed98fed3375cea2907eb41898fbfc921a6d21 100644 (file)
@@ -7833,7 +7833,10 @@ cp_finish_decl (tree decl, tree init, bool init_const_expr_p,
            maybe_commonize_var (decl);
        }
 
-      if (var_definition_p && TREE_STATIC (decl))
+      if (var_definition_p
+         /* With -fmerge-all-constants, gimplify_init_constructor
+            might add TREE_STATIC to the variable.  */
+         && (TREE_STATIC (decl) || flag_merge_constants >= 2))
        {
          /* If a TREE_READONLY variable needs initialization
             at runtime, it is no longer readonly and we need to
diff --git a/gcc/testsuite/g++.dg/init/const14.C b/gcc/testsuite/g++.dg/init/const14.C
new file mode 100644 (file)
index 0000000..f29c7e5
--- /dev/null
@@ -0,0 +1,14 @@
+// PR c++/91529
+// { dg-do run }
+// { dg-additional-options -fmerge-all-constants }
+
+struct A
+{
+  int i[2];
+  ~A() { i[0] = 0; }
+};
+
+int main()
+{
+  const A a = { 1,2 };
+}