OSDN Git Service

PR c++/48284
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 May 2011 19:31:59 +0000 (19:31 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 May 2011 19:31:59 +0000 (19:31 +0000)
* error.c (dump_expr) [COMPONENT_REF]: Use pp_cxx_dot
with INDIRECT_REF of REFERENCE_TYPE.

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

gcc/cp/ChangeLog
gcc/cp/error.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/error6.C [new file with mode: 0644]

index 332b98c..19ef7ca 100644 (file)
@@ -1,5 +1,9 @@
 2011-05-27  Jason Merrill  <jason@redhat.com>
 
+       PR c++/48284
+       * error.c (dump_expr) [COMPONENT_REF]: Use pp_cxx_dot
+       with INDIRECT_REF of REFERENCE_TYPE.
+
        PR c++/49181
        * pt.c (get_mostly_instantiated_function_type): Use push_access_scope.
 
index 8d7aaa7..a40630a 100644 (file)
@@ -1890,7 +1890,10 @@ dump_expr (tree t, int flags)
                    && strcmp (IDENTIFIER_POINTER (DECL_NAME (ob)), "this")))
              {
                dump_expr (ob, flags | TFF_EXPR_IN_PARENS);
-               pp_cxx_arrow (cxx_pp);
+               if (TREE_CODE (TREE_TYPE (ob)) == REFERENCE_TYPE)
+                 pp_cxx_dot (cxx_pp);
+               else
+                 pp_cxx_arrow (cxx_pp);
              }
          }
        else
index 474b857..d034def 100644 (file)
@@ -1,5 +1,7 @@
 2011-05-27  Jason Merrill  <jason@redhat.com>
 
+       * g++.dg/cpp0x/error6.C: New.
+
        * g++.dg/cpp0x/error5.C: New.
 
 2011-05-27  Jakub Jelinek  <jakub@redhat.com>
diff --git a/gcc/testsuite/g++.dg/cpp0x/error6.C b/gcc/testsuite/g++.dg/cpp0x/error6.C
new file mode 100644 (file)
index 0000000..3515652
--- /dev/null
@@ -0,0 +1,8 @@
+// PR c++/48284
+// { dg-options -std=c++0x }
+
+template<typename C>
+auto g(C& c) -> decltype (c.f()) { return c.f(); } // { dg-error "decltype .c\\.f" }
+
+template<typename C>
+auto g(C& c) -> decltype (c.f()) { return c.f(); } // { dg-error "decltype .c\\.f" }