This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 0e6747d2a63 gdb: Document qIsAddressTagged packet new 6364617120e binutils, objdump: Add --ctf-parent-section new ca019227843 libctf: don't leak the symbol name in the name->type cache new 54a0219150d libctf: remove static/dynamic name lookup distinction new 2ba5ec13b20 libctf: fix name lookup in dicts containing base-type bitfields new 8a60c930963 libctf: support addition of types to dicts read via ctf_open() new b4b77b26e22 libctf: fix a comment new 4fa4e3d92ac libctf: delete LCTF_DIRTY new bb2a9a465e0 libctf: fix a comment typo new 629acbe4a32 libctf: rename ctf_dict.ctf_{symtab,strtab} new 3301ddba1ba Revert "libctf: do not corrupt strings across ctf_serialize" new 149ce5c2636 libctf: replace 'pending refs' abstraction new cf9da3b0b6a libctf: rethink strtab writeout new 483546ce4f3 libctf: make ctf_serialize() actually serialize new eb244227d83 libctf: fix tiny dumping error new 0ebf1bdeeda libctf: improve handling of type dumping errors new 9049b960f2b libctf: make ctf_lookup of symbols by name work in more cases new a96a9ca9535 libctf: fix a debugging typo new 3b5e2d0e8d5 libctf: add rewriting tests new b5ac272b872 libctf: fix leak in test new 7e1368b58f3 libctf: don't pass errno into ctf_err_warn so often new d8e1bca7ebc libctf: Remove undefined functions from ver. map new edc27e2d90a libctf: do not include undefined functions in libctf.ver
The 22 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: binutils/doc/ctf.options.texi | 10 + binutils/objdump.c | 59 +- libctf/configure | 21 +- libctf/configure.ac | 21 +- libctf/ctf-archive.c | 9 +- libctf/ctf-create.c | 254 ++++----- libctf/ctf-dedup.c | 8 +- libctf/ctf-dump.c | 10 +- libctf/ctf-hash.c | 112 ++-- libctf/ctf-impl.h | 116 ++-- libctf/ctf-link.c | 38 +- libctf/ctf-lookup.c | 370 +++++++----- libctf/ctf-open.c | 343 ++++++------ libctf/ctf-serialize.c | 402 +++++-------- libctf/ctf-string.c | 619 ++++++++++++++------- libctf/ctf-subr.c | 6 +- libctf/ctf-types.c | 44 +- libctf/ctf-util.c | 13 - libctf/libctf.ver | 5 +- libctf/testsuite/libctf-lookup/add-to-opened-ctf.c | 19 + libctf/testsuite/libctf-lookup/add-to-opened.c | 148 +++++ libctf/testsuite/libctf-lookup/add-to-opened.lk | 3 + .../libctf-lookup/conflicting-type-syms.c | 4 + libctf/testsuite/libctf-regression/gzrewrite-ctf.c | 19 + libctf/testsuite/libctf-regression/gzrewrite.c | 165 ++++++ libctf/testsuite/libctf-regression/gzrewrite.lk | 3 + libctf/testsuite/libctf-regression/zrewrite.c | 156 ++++++ libctf/testsuite/libctf-regression/zrewrite.lk | 3 + .../libctf-writable/libctf-bitfield-name-lookup.c | 137 +++++ ...opagation.lk => libctf-bitfield-name-lookup.lk} | 0 30 files changed, 1984 insertions(+), 1133 deletions(-) create mode 100644 libctf/testsuite/libctf-lookup/add-to-opened-ctf.c create mode 100644 libctf/testsuite/libctf-lookup/add-to-opened.c create mode 100644 libctf/testsuite/libctf-lookup/add-to-opened.lk create mode 100644 libctf/testsuite/libctf-regression/gzrewrite-ctf.c create mode 100644 libctf/testsuite/libctf-regression/gzrewrite.c create mode 100644 libctf/testsuite/libctf-regression/gzrewrite.lk create mode 100644 libctf/testsuite/libctf-regression/zrewrite.c create mode 100644 libctf/testsuite/libctf-regression/zrewrite.lk create mode 100644 libctf/testsuite/libctf-writable/libctf-bitfield-name-lookup.c copy libctf/testsuite/libctf-writable/{error-propagation.lk => libctf-bitfield-nam [...]