aboutsummaryrefslogtreecommitdiff
path: root/include/demangle.h
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2012-01-07 02:53:16 +0000
committerJason Merrill <jason@redhat.com>2012-01-07 02:53:16 +0000
commitc7571c06f1498cc227c0690f1c094769415fbab1 (patch)
tree8f16753ef5b8409ff65a7201209e881533da90eb /include/demangle.h
parent48b5efd2c0d03799029e190386e672f6af776502 (diff)
downloadfsf-binutils-gdb-c7571c06f1498cc227c0690f1c094769415fbab1.zip
fsf-binutils-gdb-c7571c06f1498cc227c0690f1c094769415fbab1.tar.gz
fsf-binutils-gdb-c7571c06f1498cc227c0690f1c094769415fbab1.tar.bz2
merge from gcc
Diffstat (limited to 'include/demangle.h')
-rw-r--r--include/demangle.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h
index 98b11d7..34b3ed3 100644
--- a/include/demangle.h
+++ b/include/demangle.h
@@ -344,6 +344,9 @@ enum demangle_component_type
template argument, and the right subtree is either NULL or
another TEMPLATE_ARGLIST node. */
DEMANGLE_COMPONENT_TEMPLATE_ARGLIST,
+ /* An initializer list. The left subtree is either an explicit type or
+ NULL, and the right subtree is a DEMANGLE_COMPONENT_ARGLIST. */
+ DEMANGLE_COMPONENT_INITIALIZER_LIST,
/* An operator. This holds information about a standard
operator. */
DEMANGLE_COMPONENT_OPERATOR,
@@ -353,6 +356,8 @@ enum demangle_component_type
/* A typecast, represented as a unary operator. The one subtree is
the type to which the argument should be cast. */
DEMANGLE_COMPONENT_CAST,
+ /* A nullary expression. The left subtree is the operator. */
+ DEMANGLE_COMPONENT_NULLARY,
/* A unary expression. The left subtree is the operator, and the
right subtree is the single argument. */
DEMANGLE_COMPONENT_UNARY,