diff options
author | Nick Clifton <nickc@redhat.com> | 2021-07-03 14:00:33 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2021-07-03 14:00:33 +0100 |
commit | 20c4b12e937b20f0998bd25ad37c77145650e826 (patch) | |
tree | bcc05850ae7ed90cedb0368ab7f8b3a88a703500 /include | |
parent | 0d03c52682bec990371b2f006e186641cf86f923 (diff) | |
download | binutils-20c4b12e937b20f0998bd25ad37c77145650e826.zip binutils-20c4b12e937b20f0998bd25ad37c77145650e826.tar.gz binutils-20c4b12e937b20f0998bd25ad37c77145650e826.tar.bz2 |
Synchronize libiberty sources (and include/demangle.h) with GCC master version
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 9 | ||||
-rw-r--r-- | include/demangle.h | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index d8d6067..eef7451 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,12 @@ +2021-07-03 Nick Clifton <nickc@redhat.com> + + Import from gcc mainline: + 2021-03-31 Patrick Palka <ppalka@redhat.com> + + PR c++/88115 + * demangle.h (enum demangle_component_type): Add + DEMANGLE_COMPONENT_VENDOR_EXPR. + 2021-07-01 Mike Frysinger <vapier@gentoo.org> * opcode/aarch64.h (aarch64_opcode_table): Mark const. diff --git a/include/demangle.h b/include/demangle.h index 23b4726..295d58c 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -408,6 +408,9 @@ enum demangle_component_type number which involves neither modifying the mangled string nor allocating a new copy of the literal in memory. */ DEMANGLE_COMPONENT_LITERAL_NEG, + /* A vendor's builtin expression. The left subtree holds the + expression's name, and the right subtree is a argument list. */ + DEMANGLE_COMPONENT_VENDOR_EXPR, /* A libgcj compiled resource. The left subtree is the name of the resource. */ DEMANGLE_COMPONENT_JAVA_RESOURCE, |