Commit 1e3eacc7 by Jakub Jelinek Committed by Jakub Jelinek

re PR c++/33844 (Broken diagnostic: 'dotstar_expr/member_ref' not supported by…

re PR c++/33844 (Broken diagnostic: 'dotstar_expr/member_ref' not supported by pp_cxx_unqualified_id)

	PR c++/33844
	* cxx-pretty-print.c (pp_cxx_pm_expression) <case MEMBER_REF>: Print
	->* rather than .*.
	* error.c (dump_expr): Handle MEMBER_REF and DOTSTAR_EXPR.

	* g++.dg/other/ptrmem8.C: New test.

From-SVN: r129682
parent d02dbde6
2007-10-27 Jakub Jelinek <jakub@redhat.com>
PR c++/33844
* cxx-pretty-print.c (pp_cxx_pm_expression) <case MEMBER_REF>: Print
->* rather than .*.
* error.c (dump_expr): Handle MEMBER_REF and DOTSTAR_EXPR.
2007-10-27 Jason Merrill <jason@redhat.com>
PR c++/5247
......
......@@ -814,7 +814,10 @@ pp_cxx_pm_expression (cxx_pretty_printer *pp, tree t)
case MEMBER_REF:
case DOTSTAR_EXPR:
pp_cxx_pm_expression (pp, TREE_OPERAND (t, 0));
pp_cxx_dot (pp);
if (TREE_CODE (t) == MEMBER_REF)
pp_cxx_arrow (pp);
else
pp_cxx_dot (pp);
pp_star(pp);
pp_cxx_cast_expression (pp, TREE_OPERAND (t, 1));
break;
......
......@@ -2052,6 +2052,11 @@ dump_expr (tree t, int flags)
pp_cxx_offsetof_expression (cxx_pp, t);
break;
case MEMBER_REF:
case DOTSTAR_EXPR:
pp_multiplicative_expression (cxx_pp, t);
break;
case DELETE_EXPR:
case VEC_DELETE_EXPR:
pp_cxx_delete_expression (cxx_pp, t);
......
2007-10-27 Jakub Jelinek <jakub@redhat.com>
PR c++/33844
* g++.dg/other/ptrmem8.C: New test.
PR c++/33842
* g++.dg/template/error34.C: New test.
// PR c++/33844
// { dg-do compile }
struct A {};
template<int> void foo(void (A::* f)())
{
A a;
&(a.*f); // { dg-error "invalid use of\[^\n\]*\\.\\*\[^\n\]*to form|qualified-id is required" }
}
template<int> void bar(void (A::* f)())
{
A *p;
&(p->*f); // { dg-error "invalid use of\[^\n\]*->\\*\[^\n\]*to form|qualified-id is required" }
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment