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 fcb36d7462 Automatic date update in version.in new dd7efa7915 PowerPC add initial -mfuture instruction support new 8acf14351c PowerPC D-form prefixed loads and stores new 5663e32184 PowerPC relocations for prefix insns new 4a421c53cf PowerPC GOT_PCREL34 optimisation new 04bdff6a76 PowerPC notoc linkage stubs
The 5 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 | 56 +++ bfd/bfd-in2.h | 17 + bfd/elf64-ppc.c | 950 +++++++++++++++++++++++++++++++---- bfd/libbfd.h | 17 + bfd/reloc.c | 34 ++ binutils/ChangeLog | 4 + binutils/objdump.c | 3 +- gas/ChangeLog | 50 ++ gas/config/tc-ppc.c | 370 +++++++++++--- gas/config/tc-ppc.h | 24 +- gas/messages.c | 18 +- gas/testsuite/gas/ppc/ppc.exp | 3 + gas/testsuite/gas/ppc/prefix-align.d | 30 ++ gas/testsuite/gas/ppc/prefix-align.s | 21 + gas/testsuite/gas/ppc/prefix-pcrel.d | 235 +++++++++ gas/testsuite/gas/ppc/prefix-pcrel.s | 121 +++++ gas/testsuite/gas/ppc/prefix-reloc.d | 35 ++ gas/testsuite/gas/ppc/prefix-reloc.s | 13 + include/ChangeLog | 20 + include/dis-asm.h | 2 + include/elf/ppc64.h | 24 + include/opcode/ppc.h | 18 + ld/ChangeLog | 13 + ld/testsuite/ld-powerpc/notoc2.d | 29 ++ ld/testsuite/ld-powerpc/notoc2.s | 13 + ld/testsuite/ld-powerpc/pcrelopt.d | 89 ++++ ld/testsuite/ld-powerpc/pcrelopt.s | 119 +++++ ld/testsuite/ld-powerpc/pcrelopt.sec | 6 + ld/testsuite/ld-powerpc/powerpc.exp | 6 + opcodes/ChangeLog | 27 + opcodes/ppc-dis.c | 93 +++- opcodes/ppc-opc.c | 212 +++++++- 32 files changed, 2498 insertions(+), 174 deletions(-) create mode 100644 gas/testsuite/gas/ppc/prefix-align.d create mode 100644 gas/testsuite/gas/ppc/prefix-align.s create mode 100644 gas/testsuite/gas/ppc/prefix-pcrel.d create mode 100644 gas/testsuite/gas/ppc/prefix-pcrel.s create mode 100644 gas/testsuite/gas/ppc/prefix-reloc.d create mode 100644 gas/testsuite/gas/ppc/prefix-reloc.s create mode 100644 ld/testsuite/ld-powerpc/notoc2.d create mode 100644 ld/testsuite/ld-powerpc/notoc2.s create mode 100644 ld/testsuite/ld-powerpc/pcrelopt.d create mode 100644 ld/testsuite/ld-powerpc/pcrelopt.s create mode 100644 ld/testsuite/ld-powerpc/pcrelopt.sec