re PR c++/44366 ([C++0x] g++ crashes when declaring a lambda expression using a typedef'd decltype.)
PR c++/44366 * error.c (dump_parameters): Mask out TFF_SCOPE. (dump_simple_decl): Don't print the scope of a PARM_DECL. (dump_scope): Remove no-op mask. From-SVN: r160420
This commit is contained in:
parent
49c8958b58
commit
af88c58fb8
4 changed files with 25 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
|||
2010-06-07 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/44366
|
||||
* error.c (dump_parameters): Mask out TFF_SCOPE.
|
||||
(dump_simple_decl): Don't print the scope of a PARM_DECL.
|
||||
(dump_scope): Remove no-op mask.
|
||||
|
||||
PR c++/44401
|
||||
* parser.c (cp_parser_lookup_name): Fix naming the constructor.
|
||||
|
||||
|
|
|
@ -115,7 +115,7 @@ init_error (void)
|
|||
static void
|
||||
dump_scope (tree scope, int flags)
|
||||
{
|
||||
int f = ~TFF_RETURN_TYPE & (flags & (TFF_SCOPE | TFF_CHASE_TYPEDEF));
|
||||
int f = flags & (TFF_SCOPE | TFF_CHASE_TYPEDEF);
|
||||
|
||||
if (scope == NULL_TREE)
|
||||
return;
|
||||
|
@ -865,6 +865,7 @@ dump_simple_decl (tree t, tree type, int flags)
|
|||
pp_maybe_space (cxx_pp);
|
||||
}
|
||||
if (! (flags & TFF_UNQUALIFIED_NAME)
|
||||
&& TREE_CODE (t) != PARM_DECL
|
||||
&& (!DECL_INITIAL (t)
|
||||
|| TREE_CODE (DECL_INITIAL (t)) != TEMPLATE_PARM_INDEX))
|
||||
dump_scope (CP_DECL_CONTEXT (t), flags);
|
||||
|
@ -1355,6 +1356,7 @@ static void
|
|||
dump_parameters (tree parmtypes, int flags)
|
||||
{
|
||||
int first = 1;
|
||||
flags &= ~TFF_SCOPE;
|
||||
pp_cxx_left_paren (cxx_pp);
|
||||
|
||||
for (first = 1; parmtypes != void_list_node;
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2010-06-07 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/44366
|
||||
* g++.dg/cpp0x/decltype23.C: New.
|
||||
|
||||
2010-06-08 Andrew Pinski <pinskia@gmail.com>
|
||||
Shujing Zhao <pearly.zhao@oracle.com>
|
||||
|
||||
|
|
12
gcc/testsuite/g++.dg/cpp0x/decltype23.C
Normal file
12
gcc/testsuite/g++.dg/cpp0x/decltype23.C
Normal file
|
@ -0,0 +1,12 @@
|
|||
// PR c++/44366
|
||||
// While printing the operand of decltype We were trying to print f as the
|
||||
// scope of t, causing infinite recursion.
|
||||
// { dg-options "-std=c++0x" }
|
||||
|
||||
template <typename T>
|
||||
void f(T t, decltype(*t))
|
||||
{
|
||||
struct A { void g() {
|
||||
foo; // { dg-error "foo" }
|
||||
} };
|
||||
}
|
Loading…
Add table
Reference in a new issue