]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
revert: re PR c++/48289 (-pedantic breaks std::move)
authorJason Merrill <jason@redhat.com>
Mon, 28 Mar 2011 15:06:28 +0000 (11:06 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Mon, 28 Mar 2011 15:06:28 +0000 (11:06 -0400)
        Revert:
        PR c++/48289
        * pt.c (build_non_dependent_expr): Keep dereferences outside the
        NON_DEPENDENT_EXPR.

From-SVN: r171607

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/move1.C [deleted file]

index a6b681f878e70f996bbde114d18cc8cc9e454387..7a4d367ce5558d1579240469e145afa0dd763fba 100644 (file)
@@ -1,3 +1,10 @@
+2011-03-28  Jason Merrill  <jason@redhat.com>
+
+       Revert:
+       PR c++/48289
+       * pt.c (build_non_dependent_expr): Keep dereferences outside the
+       NON_DEPENDENT_EXPR.
+
 2011-03-25  Jason Merrill  <jason@redhat.com>
 
        PR c++/48289
index bb93667b82df0bb3d87ce6c34e190393db77aa32..f458f38a8c36124b276b457b5cb5758f7623cc79 100644 (file)
@@ -18273,17 +18273,24 @@ build_non_dependent_expr (tree expr)
                   TREE_OPERAND (expr, 0),
                   build_non_dependent_expr (TREE_OPERAND (expr, 1)));
 
-  /* Keep dereferences outside the NON_DEPENDENT_EXPR so lvalue_kind
-     doesn't need to look inside.  */
-  if (TREE_CODE (expr) == INDIRECT_REF && REFERENCE_REF_P (expr))
-    return convert_from_reference (build_non_dependent_expr
-                                  (TREE_OPERAND (expr, 0)));
-
   /* If the type is unknown, it can't really be non-dependent */
   gcc_assert (TREE_TYPE (expr) != unknown_type_node);
 
-  /* Otherwise, build a NON_DEPENDENT_EXPR.  */
-  return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
+  /* Otherwise, build a NON_DEPENDENT_EXPR.
+
+     REFERENCE_TYPEs are not stripped for expressions in templates
+     because doing so would play havoc with mangling.  Consider, for
+     example:
+
+       template <typename T> void f<T& g>() { g(); }
+
+     In the body of "f", the expression for "g" will have
+     REFERENCE_TYPE, even though the standard says that it should
+     not.  The reason is that we must preserve the syntactic form of
+     the expression so that mangling (say) "f<g>" inside the body of
+     "f" works out correctly.  Therefore, the REFERENCE_TYPE is
+     stripped here.  */
+  return build1 (NON_DEPENDENT_EXPR, non_reference (TREE_TYPE (expr)), expr);
 }
 
 /* ARGS is a vector of expressions as arguments to a function call.
index c51ab21dc45e93a498107e9129c8f6239d6bb050..88ab1cdc3cd110e5eface6b63c49d6995e692ad0 100644 (file)
@@ -1,3 +1,8 @@
+2011-03-28  Jason Merrill  <jason@redhat.com>
+
+       Revert:
+       * g++.dg/cpp0x/move1.C: New.
+
 2011-03-28  Richard Sandiford  <richard.sandiford@linaro.org>
 
        PR target/47553
diff --git a/gcc/testsuite/g++.dg/cpp0x/move1.C b/gcc/testsuite/g++.dg/cpp0x/move1.C
deleted file mode 100644 (file)
index 12e363a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// { dg-options "-std=c++0x -pedantic-errors" }
-
-#include <utility>
-
-class A { };
-
-static void g ( A && ) { }
-
-template < class T > class B {
-public:
- void f ( ) {
-  A a;
-  g ( std :: move ( a ) );
- }
-};