Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2009-10-02 22:22:51 +0400
committerDJ Delorie <dj@redhat.com>2009-10-02 22:22:51 +0400
commit9c47bbb6e9bd8d95775a7887209d71f84d7e850c (patch)
tree0df226985d389e056d5bc3988904b029a6b96798 /include/demangle.h
parent0ca6c6b802e02d584e3f0ac4bfa2b5bf3676a897 (diff)
merge from gcc
Diffstat (limited to 'include/demangle.h')
-rw-r--r--include/demangle.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h
index 4b3565bfb..76fab0a45 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;
};