Fix PR c++/70590 (error: location references block not in block tree)
authorPatrick Palka <ppalka@gcc.gnu.org>
Fri, 8 Apr 2016 20:17:10 +0000 (20:17 +0000)
committerPatrick Palka <ppalka@gcc.gnu.org>
Fri, 8 Apr 2016 20:17:10 +0000 (20:17 +0000)
gcc/cp/ChangeLog:

PR c++/70590
PR c++/70452
* constexpr.c (cxx_eval_outermost_expression): Call unshare_expr
on the result if it's not a CONSTRUCTOR.

gcc/testsuite/ChangeLog:

PR c++/70590
PR c++/70452
* g++.dg/pr70590.C: New test.
* g++.dg/pr70590-2.C: New test.

From-SVN: r234837

gcc/cp/ChangeLog
gcc/cp/constexpr.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/pr70590-2.C [new file with mode: 0644]
gcc/testsuite/g++.dg/pr70590.C [new file with mode: 0644]

index a8cb00e..1a690a9 100644 (file)
@@ -1,3 +1,10 @@
+2016-04-08  Patrick Palka  <ppalka@gcc.gnu.org>
+
+       PR c++/70590
+       PR c++/70452
+       * constexpr.c (cxx_eval_outermost_expression): Call unshare_expr
+       on the result if it's not a CONSTRUCTOR.
+
 2016-04-07  Patrick Palka  <ppalka@gcc.gnu.org>
 
        PR c++/70452
index 5bccdec..e6e2cf6 100644 (file)
@@ -4164,6 +4164,12 @@ cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant,
   if (!non_constant_p && overflow_p)
     non_constant_p = true;
 
+  /* Unshare the result unless it's a CONSTRUCTOR in which case it's already
+     unshared.  */
+  bool should_unshare = true;
+  if (r == t || TREE_CODE (r) == CONSTRUCTOR)
+    should_unshare = false;
+
   if (non_constant_p && !allow_non_constant)
     return error_mark_node;
   else if (non_constant_p && TREE_CONSTANT (r))
@@ -4180,6 +4186,9 @@ cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant,
   else if (non_constant_p || r == t)
     return t;
 
+  if (should_unshare)
+    r = unshare_expr (r);
+
   if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
     {
       if (TREE_CODE (t) == TARGET_EXPR
index 6e0afb0..72f93e0 100644 (file)
@@ -1,3 +1,10 @@
+2016-04-08  Patrick Palka  <ppalka@gcc.gnu.org>
+
+       PR c++/70590
+       PR c++/70452
+       * g++.dg/pr70590.C: New test.
+       * g++.dg/pr70590-2.C: New test.
+
 2016-04-08  Jakub Jelinek  <jakub@redhat.com>
 
        PR middle-end/70593
diff --git a/gcc/testsuite/g++.dg/pr70590-2.C b/gcc/testsuite/g++.dg/pr70590-2.C
new file mode 100644 (file)
index 0000000..409c86e
--- /dev/null
@@ -0,0 +1,21 @@
+// PR c++/70590
+// { dg-do compile { target c++11 } }
+// { dg-options "-O2" }
+
+int a;
+
+constexpr int *foo = &a;
+
+void blah (int *);
+
+int
+bar ()
+{
+  blah (foo);
+}
+
+int
+baz ()
+{
+  blah (foo);
+}
diff --git a/gcc/testsuite/g++.dg/pr70590.C b/gcc/testsuite/g++.dg/pr70590.C
new file mode 100644 (file)
index 0000000..4886200
--- /dev/null
@@ -0,0 +1,25 @@
+// PR c++/70590
+// { dg-do compile { target c++11 } }
+// { dg-options "-O2" }
+
+int a;
+
+constexpr int *
+foo ()
+{
+  return &a;
+}
+
+void blah (int *);
+
+int
+bar ()
+{
+  blah (foo ());
+}
+
+int
+baz ()
+{
+  blah (foo ());
+}