Here, in C++14 or later, we remember the parentheses around 'a' in the
return statement by using a REF_PARENTHESIZED_P wrapper, which ends up
inhibiting NRVO because we don't look through this wrapper before
checking the conditions for NRVO. This patch fixes this by calling
maybe_undo_parenthesized_ref sooner in check_return_expr.
PR c++/67302
gcc/cp/ChangeLog:
* typeck.c (check_return_expr): Call maybe_undo_parenthesized_ref
sooner, before the NRVO handling.
gcc/testsuite/ChangeLog:
* g++.dg/opt/nrv21.C: New test.
See finish_function and finalize_nrv for the rest of this optimization. */
if (retval)
- STRIP_ANY_LOCATION_WRAPPER (retval);
+ {
+ retval = maybe_undo_parenthesized_ref (retval);
+ STRIP_ANY_LOCATION_WRAPPER (retval);
+ }
bool named_return_value_okay_p = can_do_nrvo_p (retval, functype);
if (fn_returns_value_p && flag_elide_constructors)
if (VOID_TYPE_P (functype))
return error_mark_node;
- /* If we had an id-expression obfuscated by force_paren_expr, we need
- to undo it so we can try to treat it as an rvalue below. */
- retval = maybe_undo_parenthesized_ref (retval);
-
if (processing_template_decl)
retval = build_non_dependent_expr (retval);
--- /dev/null
+// PR c++/67302
+// { dg-additional-options -fdump-tree-gimple }
+// { dg-final { scan-tree-dump-not "<retval> = a" "gimple" } }
+
+struct A
+{
+ int ar[42];
+ A();
+};
+
+A f() {
+ A a;
+ return (a); // The parens should not inhibit NRVO.
+}