diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-07-17 19:09:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2009-07-17 19:09:54 +0000 |
commit | 23b1a789fd78c9a5bd2957d2375fad585bb5e060 (patch) | |
tree | 35a27ed8e0c745eb394b8267477a628113ffd7f3 /include/demangle.h | |
parent | a0ce0e6e57acacb2fb3ccbc1179dd5247401ea40 (diff) | |
download | gcc-23b1a789fd78c9a5bd2957d2375fad585bb5e060.zip gcc-23b1a789fd78c9a5bd2957d2375fad585bb5e060.tar.gz gcc-23b1a789fd78c9a5bd2957d2375fad585bb5e060.tar.bz2 |
demangle.h (enum demangle_component_type <DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS>) (enum demangle_component_type <DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS>): New.
include
2009-07-17 Jan Kratochvil <jan.kratochvil@redhat.com>
* demangle.h
(enum demangle_component_type <DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS>)
(enum demangle_component_type <DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS>):
New.
libiberty
2009-07-17 Jan Kratochvil <jan.kratochvil@redhat.com>
* cp-demangle.c (d_print_comp <DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS>)
(d_print_comp <DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS): New.
(d_make_comp <DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS>)
(d_make_comp <DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS): New.
(d_demangle_callback): The variable type is now declared as enum.
Replace parser of _GLOBAL_ symbols by a d_make_comp call.
From-SVN: r149756
Diffstat (limited to 'include/demangle.h')
-rw-r--r-- | include/demangle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h index eb39c7c..0bcae2f 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -377,6 +377,10 @@ enum demangle_component_type DEMANGLE_COMPONENT_CHARACTER, /* A decltype type. */ DEMANGLE_COMPONENT_DECLTYPE, + /* Global constructors keyed to name. */ + DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS, + /* Global destructors keyed to name. */ + DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS, /* A pack expansion. */ DEMANGLE_COMPONENT_PACK_EXPANSION }; |