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 78c84bf926f Re: x86: correct decoding of nop/reserved space (0f18 ... 0x1f) new 8aa2d0236a5 bfd: add missing smclass when creating csect for xcoff64 new 6d4d932867f bfd: use default coff_write_object_contents for XCOFF64 new 0c929e83c1f bfd: move xcoff64_ppc_relocate_section after the HOWTO table new 2c1bef53dee aix: correct HOWTO table and add missing relocations new 4a403be0c1b aix: implement R_TOCU and R_TOCL relocations new 1b2cb8e2ee5 aix: implement TLS relocation for gas and ld new e3141a4d894 gdb/testsuite: make test names unique in gdb.python/py-mi.exp new 5fc5a1b882c gdb/testsuite: make test names unique in gdb.python/py-form [...] new 22d3e7f6293 gdb/testsuite: make test names unique in gdb.python/py-strfns.exp new f35d6971cda gdb/testsuite: make test names unique in gdb.python/py-fini [...] new 93598ea43dc gdb/testsuite: make test names unique in gdb.python/py-explore.exp new 8b12ded4e6a gdb/testsuite: make test names unique in gdb.python/py-pp-m [...] new 2cb60e747bc gdb/testsuite: make test names unique in gdb.python/py-block.exp new e3e48d8fdb4 gdb/testsuite: make test names unique in gdb.python/py-prompt.exp new 79d041578d9 gdb/testsuite: make test names unique in gdb.python/py-symtab.exp new 0125fabc7a6 gdb/testsuite: remove a duplicate test new 66bb1dd9cda gdb/testsuite: make test names unique in gdb.python/py-expl [...] new 8a4efb366fa gdb/testsuite: check the correct Python variable in test new 323b848c51d gdb/testsuite: remove duplicate test from gdb.python/py-val [...] new 7f99d636c2b gdb/testsuite: resolve remaining duplicate test names in gd [...]
The 20 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: bfd/ChangeLog | 79 ++ bfd/bfd-in2.h | 12 + bfd/coff-rs6000.c | 548 +++++++-- bfd/coff64-rs6000.c | 1158 +++++++++----------- bfd/coffcode.h | 73 +- bfd/coffswap.h | 11 +- bfd/libbfd.h | 12 + bfd/libxcoff.h | 3 +- bfd/reloc.c | 24 + bfd/xcofflink.c | 18 + binutils/ChangeLog | 4 + binutils/od-xcoff.c | 3 +- gas/ChangeLog | 41 + gas/config/tc-ppc.c | 384 ++++++- gas/config/tc-ppc.h | 17 + gdb/testsuite/ChangeLog | 71 ++ gdb/testsuite/gdb.python/lib-types.exp | 2 +- gdb/testsuite/gdb.python/py-bad-printers.exp | 7 +- gdb/testsuite/gdb.python/py-block.exp | 18 +- gdb/testsuite/gdb.python/py-events.exp | 2 +- gdb/testsuite/gdb.python/py-explore-cc.exp | 8 +- gdb/testsuite/gdb.python/py-explore.exp | 58 +- gdb/testsuite/gdb.python/py-finish-breakpoint.exp | 28 +- gdb/testsuite/gdb.python/py-finish-breakpoint2.exp | 6 +- gdb/testsuite/gdb.python/py-format-string.exp | 36 +- gdb/testsuite/gdb.python/py-frame-inline.exp | 2 +- gdb/testsuite/gdb.python/py-frame.exp | 3 +- gdb/testsuite/gdb.python/py-infthread.exp | 3 +- gdb/testsuite/gdb.python/py-lookup-type.exp | 2 - gdb/testsuite/gdb.python/py-mi.exp | 322 +++--- gdb/testsuite/gdb.python/py-pp-maint.exp | 15 +- gdb/testsuite/gdb.python/py-prompt.exp | 85 +- gdb/testsuite/gdb.python/py-strfns.exp | 4 +- gdb/testsuite/gdb.python/py-symtab.exp | 6 +- gdb/testsuite/gdb.python/py-value-cc.exp | 2 - include/ChangeLog | 17 + include/coff/internal.h | 9 +- include/coff/rs6000.h | 50 +- include/coff/rs6k64.h | 54 +- include/coff/xcoff.h | 72 +- ld/ChangeLog | 25 + ld/emultempl/aix.em | 38 + ld/scripttempl/aix.sc | 31 +- ld/testsuite/ld-powerpc/aix-largetoc-1-32.d | 20 + ld/testsuite/ld-powerpc/aix-largetoc-1-64.d | 20 + .../{aix-abs-branch-1.ex => aix-largetoc-1.ex} | 0 ld/testsuite/ld-powerpc/aix-largetoc-1.s | 25 + ld/testsuite/ld-powerpc/aix-tls-reloc-32.d | 35 + ld/testsuite/ld-powerpc/aix-tls-reloc-64.d | 31 + .../{aix-abs-branch-1.ex => aix-tls-reloc.ex} | 0 ld/testsuite/ld-powerpc/aix-tls-reloc.s | 65 ++ ld/testsuite/ld-powerpc/aix-tls-section-32.d | 15 + ld/testsuite/ld-powerpc/aix-tls-section-64.d | 15 + .../aix-tls-section.ex} | 0 ld/testsuite/ld-powerpc/aix-tls-section.s | 8 + ld/testsuite/ld-powerpc/aix52.exp | 27 + 56 files changed, 2407 insertions(+), 1217 deletions(-) create mode 100644 ld/testsuite/ld-powerpc/aix-largetoc-1-32.d create mode 100644 ld/testsuite/ld-powerpc/aix-largetoc-1-64.d copy ld/testsuite/ld-powerpc/{aix-abs-branch-1.ex => aix-largetoc-1.ex} (100%) create mode 100644 ld/testsuite/ld-powerpc/aix-largetoc-1.s create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-32.d create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-64.d copy ld/testsuite/ld-powerpc/{aix-abs-branch-1.ex => aix-tls-reloc.ex} (100%) create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc.s create mode 100644 ld/testsuite/ld-powerpc/aix-tls-section-32.d create mode 100644 ld/testsuite/ld-powerpc/aix-tls-section-64.d copy ld/testsuite/{ld-elf/indirect5.out => ld-powerpc/aix-tls-section.ex} (100%) create mode 100644 ld/testsuite/ld-powerpc/aix-tls-section.s