diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-03 20:42:35 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-03 20:42:35 +0000 |
commit | 29e2e80a45c9904fb8b6ed79d73b577613fdda0b (patch) | |
tree | f8b4a568a621bd1d216e238d04ed36cb854f1bc4 /include/demangle.h | |
parent | 1b4b4eeed13765bf6806dd4e9f36efae2e44e6d9 (diff) | |
download | gcc-29e2e80a45c9904fb8b6ed79d73b577613fdda0b.tar.gz |
PR c++/12909
* mangle.c (write_type) [VECTOR_TYPE]: Change mangling.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156481 138bc75d-0d04-0410-961f-82ee72b054a4
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 2ab27602be1..8ad073de532 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. */ |