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 4e56efa Automatic date update in version.in new e23eba9 Add support for RISC-V architecture.
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 | 19 + bfd/Makefile.am | 28 +- bfd/Makefile.in | 32 +- bfd/archures.c | 7 +- bfd/bfd-in2.h | 43 + bfd/config.bfd | 15 + bfd/configure | 2 + bfd/configure.ac | 2 + bfd/cpu-riscv.c | 79 + bfd/elf-bfd.h | 1 + bfd/elfnn-riscv.c | 3160 +++++++++++++++++++++++++++ bfd/elfxx-riscv.c | 815 +++++++ bfd/elfxx-riscv.h | 33 + bfd/libbfd.h | 38 + bfd/reloc.c | 80 + bfd/targets.c | 6 + binutils/ChangeLog | 14 + binutils/readelf.c | 20 +- binutils/testsuite/binutils-all/objdump.exp | 4 +- gas/ChangeLog | 21 + gas/Makefile.am | 2 + gas/Makefile.in | 17 + gas/NEWS | 2 + gas/config/tc-riscv.c | 2408 ++++++++++++++++++++ gas/config/tc-riscv.h | 101 + gas/configure | 2 +- gas/configure.ac | 2 +- gas/configure.tgt | 6 +- gas/doc/as.texinfo | 19 + gas/doc/c-riscv.texi | 48 + gas/testsuite/gas/all/gas.exp | 8 +- gas/testsuite/gas/elf/elf.exp | 3 + gas/testsuite/gas/riscv/riscv.exp | 23 + gas/testsuite/gas/riscv/t_insns.d | 10 + gas/testsuite/gas/riscv/t_insns.s | 2 + include/ChangeLog | 10 + include/dis-asm.h | 2 + include/elf/riscv.h | 92 + include/opcode/riscv-opc.h | 1160 ++++++++++ include/opcode/riscv.h | 342 +++ ld/ChangeLog | 14 + ld/Makefile.am | 13 + ld/Makefile.in | 15 + ld/NEWS | 2 +- ld/configure.tgt | 6 + ld/emulparams/elf32lriscv-defs.sh | 42 + ld/emulparams/elf32lriscv.sh | 2 + ld/emulparams/elf64lriscv-defs.sh | 13 + ld/emulparams/elf64lriscv.sh | 2 + ld/emultempl/riscvelf.em | 68 + opcodes/ChangeLog | 11 + opcodes/configure | 1 + opcodes/configure.ac | 1 + opcodes/disassemble.c | 8 + opcodes/riscv-dis.c | 502 +++++ opcodes/riscv-opc.c | 624 ++++++ 56 files changed, 9982 insertions(+), 20 deletions(-) create mode 100644 bfd/cpu-riscv.c create mode 100644 bfd/elfnn-riscv.c create mode 100644 bfd/elfxx-riscv.c create mode 100644 bfd/elfxx-riscv.h create mode 100644 gas/config/tc-riscv.c create mode 100644 gas/config/tc-riscv.h create mode 100644 gas/doc/c-riscv.texi create mode 100644 gas/testsuite/gas/riscv/riscv.exp create mode 100644 gas/testsuite/gas/riscv/t_insns.d create mode 100644 gas/testsuite/gas/riscv/t_insns.s create mode 100644 include/elf/riscv.h create mode 100644 include/opcode/riscv-opc.h create mode 100644 include/opcode/riscv.h create mode 100644 ld/emulparams/elf32lriscv-defs.sh create mode 100644 ld/emulparams/elf32lriscv.sh create mode 100644 ld/emulparams/elf64lriscv-defs.sh create mode 100644 ld/emulparams/elf64lriscv.sh create mode 100644 ld/emultempl/riscvelf.em create mode 100644 opcodes/riscv-dis.c create mode 100644 opcodes/riscv-opc.c