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 d33bc52e51 Use bool in read_index_from_section new fe944acf8f This patch adds support to objdump for disassembly of NFP (N [...]
The 1 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 | 15 + bfd/Makefile.am | 4 + bfd/Makefile.in | 6 + bfd/archures.c | 5 + bfd/bfd-in2.h | 3 + bfd/config.bfd | 7 + bfd/configure | 1 + bfd/configure.ac | 1 + bfd/cpu-nfp.c | 62 + bfd/elf-bfd.h | 1 + bfd/elf64-nfp.c | 276 ++ bfd/po/SRC-POTFILES.in | 2 + bfd/po/bfd.pot | 602 ++-- bfd/targets.c | 3 + binutils/ChangeLog | 13 + binutils/NEWS | 2 + binutils/po/binutils.pot | 3429 +++++++++----------- binutils/readelf.c | 37 + binutils/testsuite/binutils-all/nfp/objdump.exp | 52 + binutils/testsuite/binutils-all/nfp/test1.d | 973 ++++++ .../testsuite/binutils-all/nfp/test1_nfp6000.nffw | Bin 0 -> 9880 bytes binutils/testsuite/binutils-all/nfp/test2_ctx8.d | 16 + .../testsuite/binutils-all/nfp/test2_nfp6000.nffw | Bin 0 -> 1472 bytes .../testsuite/binutils-all/nfp/test2_no-pc_ctx4.d | 16 + include/ChangeLog | 8 + include/dis-asm.h | 1 + include/elf/common.h | 1 + include/elf/nfp.h | 292 ++ include/opcode/nfp.h | 180 + opcodes/ChangeLog | 11 + opcodes/Makefile.am | 1 + opcodes/Makefile.in | 2 + opcodes/configure | 1 + opcodes/configure.ac | 1 + opcodes/disassemble.c | 9 + opcodes/disassemble.h | 1 + opcodes/nfp-dis.c | 2990 +++++++++++++++++ opcodes/po/POTFILES.in | 1 + opcodes/po/opcodes.pot | 735 +++-- 39 files changed, 7302 insertions(+), 2458 deletions(-) create mode 100644 bfd/cpu-nfp.c create mode 100755 bfd/elf64-nfp.c create mode 100644 binutils/testsuite/binutils-all/nfp/objdump.exp create mode 100644 binutils/testsuite/binutils-all/nfp/test1.d create mode 100644 binutils/testsuite/binutils-all/nfp/test1_nfp6000.nffw create mode 100644 binutils/testsuite/binutils-all/nfp/test2_ctx8.d create mode 100644 binutils/testsuite/binutils-all/nfp/test2_nfp6000.nffw create mode 100644 binutils/testsuite/binutils-all/nfp/test2_no-pc_ctx4.d create mode 100755 include/elf/nfp.h create mode 100644 include/opcode/nfp.h create mode 100644 opcodes/nfp-dis.c