PR c++/47503
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 19 Feb 2011 22:39:50 +0000 (22:39 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 19 Feb 2011 22:39:50 +0000 (22:39 +0000)
* semantics.c (cxx_eval_call_expression): Shortcut trivial copy.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170330 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/semantics.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/regress/no-elide1.C [new file with mode: 0644]

index 0f6ece2..938d3f2 100644 (file)
@@ -1,3 +1,8 @@
+2011-02-19  Jason Merrill  <jason@redhat.com>
+
+       PR c++/47503
+       * semantics.c (cxx_eval_call_expression): Shortcut trivial copy.
+
 2011-02-18  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/47795
index e102ba3..8944690 100644 (file)
@@ -6019,6 +6019,10 @@ cxx_eval_call_expression (const constexpr_call *old_call, tree t,
       return t;
     }
 
+  /* Shortcut trivial copy constructor/op=.  */
+  if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
+    return convert_from_reference (get_nth_callarg (t, 1));
+
   /* If in direct recursive call, optimize definition search.  */
   if (old_call != NULL && old_call->fundef->decl == fun)
     new_call.fundef = old_call->fundef;
index db9b51d..2f82fed 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-19  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/cpp0x/regress/no-elide1.C: New.
+
 2011-02-19  Alexandre Oliva  <aoliva@redhat.com>
 
        PR tree-optimization/46620
diff --git a/gcc/testsuite/g++.dg/cpp0x/regress/no-elide1.C b/gcc/testsuite/g++.dg/cpp0x/regress/no-elide1.C
new file mode 100644 (file)
index 0000000..50df950
--- /dev/null
@@ -0,0 +1,14 @@
+// PR c++/47503
+// { dg-options "-std=c++0x -fno-elide-constructors" }
+
+struct A
+{
+  int i;
+  A ();
+};
+
+struct B
+{
+  A a;
+  B (A &aa) : a (aa) { }
+};