re PR c++/48873 ([C++0x][noexcept] Placement-new problem with deleted destructors)
authorJason Merrill <jason@redhat.com>
Thu, 5 May 2011 14:53:35 +0000 (10:53 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 5 May 2011 14:53:35 +0000 (10:53 -0400)
PR c++/48873
* tree.c (stabilize_expr): Don't make gratuitous copies of classes.

From-SVN: r173433

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

index 856e8c7..ff3ad54 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-05  Jason Merrill  <jason@redhat.com>
+
+       PR c++/48873
+       * tree.c (stabilize_expr): Don't make gratuitous copies of classes.
+
 2011-05-05  Eric Botcazou  <ebotcazou@adacore.com>
 
        * decl.c (start_preparsed_function): Do not set
index 0f2f86c..9a6e26d 100644 (file)
@@ -3119,7 +3119,10 @@ stabilize_expr (tree exp, tree* initp)
 
   if (!TREE_SIDE_EFFECTS (exp))
     init_expr = NULL_TREE;
-  else if (!TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (exp))
+  /* There are no expressions with REFERENCE_TYPE, but there can be call
+     arguments with such a type; just treat it as a pointer.  */
+  else if (TREE_CODE (TREE_TYPE (exp)) == REFERENCE_TYPE
+          || SCALAR_TYPE_P (exp)
           || !lvalue_or_rvalue_with_address_p (exp))
     {
       init_expr = get_target_expr (exp);
index d8c8d60..15e4038 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-05  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/init/new32.C: New.
+
 2011-05-05  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * gfortran.dg/fmt_g0_6.f08: Use dg-options "-ffloat-store".
diff --git a/gcc/testsuite/g++.dg/init/new32.C b/gcc/testsuite/g++.dg/init/new32.C
new file mode 100644 (file)
index 0000000..f827857
--- /dev/null
@@ -0,0 +1,16 @@
+// PR c++/48873
+
+#include <new>
+
+struct D {
+private:
+  ~D();
+};
+
+template<class T>
+T& create();
+
+void f()
+{
+  D* dp = new (((void*) 0)) D(create<D>()); // #
+}