From: Paolo Carlini Date: Fri, 10 Aug 2007 18:04:46 +0000 (+0000) Subject: re PR c++/17763 (Wrong context in error message for template parameter) X-Git-Tag: releases/gcc-4.2.2~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb56df19b9e2db8ae0577aed8c04d59233fcb703;p=thirdparty%2Fgcc.git re PR c++/17763 (Wrong context in error message for template parameter) /cp 2007-08-10 Paolo Carlini PR c++/17763 * error.c (dump_expr): Consistently use the *_cxx_* variants of the pretty-print functions. /testsuite 2007-08-10 Paolo Carlini PR c++/17763 * g++.dg/other/error16.C: New. From-SVN: r127345 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a35ffdf33bbc..b4df615743d8 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2007-08-10 Paolo Carlini + + PR c++/17763 + * error.c (dump_expr): Consistently use the *_cxx_* + variants of the pretty-print functions. + 2007-07-30 Paolo Carlini PR c++/32108 diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 2962fe655f64..1332b226e4f1 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -1420,13 +1420,13 @@ dump_expr (tree t, int flags) if (TREE_CODE (ob) == ADDR_EXPR) { dump_expr (TREE_OPERAND (ob, 0), flags | TFF_EXPR_IN_PARENS); - pp_dot (cxx_pp); + pp_cxx_dot (cxx_pp); } else if (TREE_CODE (ob) != PARM_DECL || strcmp (IDENTIFIER_POINTER (DECL_NAME (ob)), "this")) { dump_expr (ob, flags | TFF_EXPR_IN_PARENS); - pp_arrow (cxx_pp); + pp_cxx_arrow (cxx_pp); } args = TREE_CHAIN (args); } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 10a9da7ae025..2026f2fdc540 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-08-10 Paolo Carlini + + PR c++/17763 + * g++.dg/other/error16.C: New. + 2007-08-01 Andreas Krebbel * gcc.dg/20070801-1.c: New testcase. diff --git a/gcc/testsuite/g++.dg/other/error16.C b/gcc/testsuite/g++.dg/other/error16.C new file mode 100644 index 000000000000..1e34647145da --- /dev/null +++ b/gcc/testsuite/g++.dg/other/error16.C @@ -0,0 +1,14 @@ +// PR c++/17763 + +template struct Outer { + struct Inner {}; + Inner foo(); +}; + +typedef int X; +typedef Outer XOuter; + +int main() { + Outer ab; + ab.foo() == 1; // { dg-error "ab.Outer" } +}