Message ID | 4C33805E.3090809@redhat.com |
---|---|
State | New |
Headers | show |
commit 764fc0c6462f715407b98724c90e0b77580fabe2 Author: Jason Merrill <jason@redhat.com> Date: Fri Jul 2 23:51:52 2010 -0400 * error.c (dump_function_decl): Don't crash on null DECL_NAME. diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 1902a13..cff822a 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -1247,7 +1247,7 @@ dump_function_decl (tree t, int flags) tree exceptions; VEC(tree,gc) *typenames = NULL; - if (LAMBDA_FUNCTION_P (t)) + if (DECL_NAME (t) && LAMBDA_FUNCTION_P (t)) { /* A lambda's signature is essentially its "type", so defer. */ gcc_assert (LAMBDA_TYPE_P (DECL_CONTEXT (t)));