diff options
author | Jason Merrill <jason@redhat.com> | 2016-11-07 23:09:29 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2016-11-18 11:06:18 +0100 |
commit | a4ddf8dc72f0ac10c3459a91949eb1bdb07ed10d (patch) | |
tree | 7415197f4db87cc9d0de4b1f61820344f1df7b90 /libiberty/ChangeLog | |
parent | 4d17eaece8b31e642acaf4d77fe961ad8e3aaf50 (diff) | |
download | gdb-a4ddf8dc72f0ac10c3459a91949eb1bdb07ed10d.zip gdb-a4ddf8dc72f0ac10c3459a91949eb1bdb07ed10d.tar.gz gdb-a4ddf8dc72f0ac10c3459a91949eb1bdb07ed10d.tar.bz2 |
Implement P0012R1, Make exception specifications part of the type system.
libiberty/
* cp-demangle.c (is_fnqual_component_type): New.
(d_encoding, d_print_comp_inner, d_print_mod_list): Use it.
(FNQUAL_COMPONENT_CASE): New.
(d_make_comp, has_return_type, d_print_comp_inner)
(d_print_function_type): Use it.
(next_is_type_qual): New.
(d_cv_qualifiers, d_print_mod): Handle noexcept and throw-spec.
include/
* demangle.h (enum demangle_component_type): Add
DEMANGLE_COMPONENT_NOEXCEPT, DEMANGLE_COMPONENT_THROW_SPEC.
Diffstat (limited to 'libiberty/ChangeLog')
-rw-r--r-- | libiberty/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 27c275b..e532460 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,13 @@ +2016-11-07 Jason Merrill <jason@redhat.com> + + * cp-demangle.c (is_fnqual_component_type): New. + (d_encoding, d_print_comp_inner, d_print_mod_list): Use it. + (FNQUAL_COMPONENT_CASE): New. + (d_make_comp, has_return_type, d_print_comp_inner) + (d_print_function_type): Use it. + (next_is_type_qual): New. + (d_cv_qualifiers, d_print_mod): Handle noexcept and throw-spec. + 2016-11-02 Mark Wielaard <mjw@redhat.com> * cplus-dem.c (demangle_signature): Move fall through comment. |