diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a8cb00ed6e0..1a690a9bc5b 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2016-04-08 Patrick Palka + + 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 PR c++/70452 diff --git a/gcc/cp/constexpr.c b/gcc/cp/constexpr.c index 5bccdec8d15..e6e2cf6ca5f 100644 --- a/gcc/cp/constexpr.c +++ b/gcc/cp/constexpr.c @@ -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 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6e0afb0e832..72f93e09803 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2016-04-08 Patrick Palka + + PR c++/70590 + PR c++/70452 + * g++.dg/pr70590.C: New test. + * g++.dg/pr70590-2.C: New test. + 2016-04-08 Jakub Jelinek 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 index 00000000000..409c86eccd1 --- /dev/null +++ b/gcc/testsuite/g++.dg/pr70590-2.C @@ -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 index 00000000000..488620065ee --- /dev/null +++ b/gcc/testsuite/g++.dg/pr70590.C @@ -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 ()); +}