From 664aa91f58967c26edf02ae198ec2410db78699f Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Fri, 2 Oct 2009 18:23:01 +0000 Subject: merge from gcc --- include/demangle.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'include/demangle.h') diff --git a/include/demangle.h b/include/demangle.h index 4b3565b..76fab0a 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -381,6 +381,12 @@ enum demangle_component_type DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS, /* Global destructors keyed to name. */ DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS, + /* A lambda closure type. */ + DEMANGLE_COMPONENT_LAMBDA, + /* A default argument scope. */ + DEMANGLE_COMPONENT_DEFAULT_ARG, + /* An unnamed type. */ + DEMANGLE_COMPONENT_UNNAMED_TYPE, /* A pack expansion. */ DEMANGLE_COMPONENT_PACK_EXPANSION }; @@ -494,6 +500,14 @@ struct demangle_component struct demangle_component *right; } s_binary; + struct + { + /* subtree, same place as d_left. */ + struct demangle_component *sub; + /* integer. */ + int num; + } s_unary_num; + } u; }; -- cgit v1.1