diff options
author | DJ Delorie <dj@redhat.com> | 2010-02-03 23:27:54 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2010-02-03 23:27:54 +0000 |
commit | c8f7d3cb48efbcdeed082c16a6d5b90ae3c75791 (patch) | |
tree | 7a3efa9bee78867af9082331fbf0efe295c561ad /include/demangle.h | |
parent | 66dd5c4ff522dafdcaf0ec1f8c83db5764280b9c (diff) | |
download | newlib-c8f7d3cb48efbcdeed082c16a6d5b90ae3c75791.zip newlib-c8f7d3cb48efbcdeed082c16a6d5b90ae3c75791.tar.gz newlib-c8f7d3cb48efbcdeed082c16a6d5b90ae3c75791.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/demangle.h')
-rw-r--r-- | include/demangle.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h index 2ab2760..8ad073d 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -326,6 +326,9 @@ enum demangle_component_type DEMANGLE_COMPONENT_PTRMEM_TYPE, /* A fixed-point type. */ DEMANGLE_COMPONENT_FIXED_TYPE, + /* A vector type. The left subtree is the number of elements, + the right subtree is the element type. */ + DEMANGLE_COMPONENT_VECTOR_TYPE, /* An argument list. The left subtree is the current argument, and the right subtree is either NULL or another ARGLIST node. */ DEMANGLE_COMPONENT_ARGLIST, @@ -378,6 +381,8 @@ enum demangle_component_type DEMANGLE_COMPONENT_COMPOUND_NAME, /* A name formed by a single character. */ DEMANGLE_COMPONENT_CHARACTER, + /* A number. */ + DEMANGLE_COMPONENT_NUMBER, /* A decltype type. */ DEMANGLE_COMPONENT_DECLTYPE, /* Global constructors keyed to name. */ |