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 e7622e5 Automatic date update in version.in new 4f26fb3 bfd,opcodes: sparc: new opcode v9{c,d,e,v,m} architectures an [...] new 8b8c7c9 gas: sparc: fix collision of registers and pseudo-ops. new 7a10c22 opcodes,gas: adjust sparc insns and make GAS aware of it new 96074ad opcodes,gas: sparc: fix rdasr,wrasr,rdpr,wrpr,rdhpr,wrhpr insns. new a28d8e5 gdb: new AndesTech NDS32 port
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 | 22 + bfd/aoutx.h | 12 +- bfd/archures.c | 20 +- bfd/bfd-in2.h | 20 +- bfd/cpu-sparc.c | 150 +++ bfd/elf32-sparc.c | 5 + bfd/elfxx-sparc.c | 57 +- gas/ChangeLog | 62 + gas/config/tc-sparc.c | 472 +++++--- gas/testsuite/gas/sparc/ldx_efsr.d | 4 +- gas/testsuite/gas/sparc/mism-1.s | 7 + gas/testsuite/gas/sparc/mism-2.s | 23 + gas/testsuite/gas/sparc/mwait.d | 7 +- gas/testsuite/gas/sparc/mwait.s | 1 - gas/testsuite/gas/sparc/rdasr.d | 18 + gas/testsuite/gas/sparc/rdasr.s | 11 + gas/testsuite/gas/sparc/rdhpr.d | 5 +- gas/testsuite/gas/sparc/rdhpr.s | 3 + gas/testsuite/gas/sparc/rdpr.d | 2 +- gas/testsuite/gas/sparc/sparc.exp | 2 + gas/testsuite/gas/sparc/wrasr.d | 48 + gas/testsuite/gas/sparc/wrasr.s | 41 + gas/testsuite/gas/sparc/wrhpr.d | 59 +- gas/testsuite/gas/sparc/wrhpr.s | 57 +- gas/testsuite/gas/sparc/wrpr.d | 114 +- gas/testsuite/gas/sparc/wrpr.s | 110 +- gdb/ChangeLog | 16 + gdb/Makefile.in | 4 +- gdb/NEWS | 4 + gdb/configure.tgt | 5 + gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 23 + gdb/features/Makefile | 1 + gdb/features/nds32-core.xml | 44 + gdb/features/nds32-fpu.xml | 42 + gdb/features/nds32-system.xml | 14 + gdb/features/nds32.c | 92 ++ gdb/features/nds32.xml | 14 + gdb/nds32-tdep.c | 2184 ++++++++++++++++++++++++++++++++++ gdb/nds32-tdep.h | 54 + gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.base/float.exp | 9 + gdb/testsuite/gdb.xml/tdesc-regs.exp | 3 + include/ChangeLog | 7 + include/opcode/sparc.h | 6 + opcodes/ChangeLog | 46 + opcodes/sparc-dis.c | 30 +- opcodes/sparc-opc.c | 556 +++++---- 48 files changed, 4022 insertions(+), 474 deletions(-) create mode 100644 gas/testsuite/gas/sparc/mism-2.s create mode 100644 gas/testsuite/gas/sparc/rdasr.d create mode 100644 gas/testsuite/gas/sparc/rdasr.s create mode 100644 gas/testsuite/gas/sparc/wrasr.d create mode 100644 gas/testsuite/gas/sparc/wrasr.s create mode 100644 gdb/features/nds32-core.xml create mode 100644 gdb/features/nds32-fpu.xml create mode 100644 gdb/features/nds32-system.xml create mode 100644 gdb/features/nds32.c create mode 100644 gdb/features/nds32.xml create mode 100644 gdb/nds32-tdep.c create mode 100644 gdb/nds32-tdep.h