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 96537189c92 sim: frv: resolve syscalls dynamically new 64ae70dde5b sim: nltvals: pull target syscalls out into a dedicated sou [...] new e38330f8b00 sim: iq2000/lm32/m32c/moxie/rx: switch to new target-newlib [...] new 96b1eb7e177 sim: v850: switch to new target-newlib-syscall new c44df9148d5 sim: sh: switch to new target-newlib-syscall new 0bf1633f018 sim: d10v: switch to new target-newlib-syscall new ab230d13fc8 sim: cr16: switch to new target-newlib-syscall new c8c6ef38075 sim: riscv: switch to new target-newlib-syscall new 6cbb891faa7 sim: mcore: switch to new target-newlib-syscall new 1e42d01772d sim: drop unused gentmap & nltvals.def logic
The 9 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: sim/.gitignore | 2 - sim/Makefile.am | 5 +- sim/Makefile.in | 24 +- sim/README-HACKING | 23 +- sim/common/Make-common.in | 29 +- sim/common/gennltvals.py | 163 ++++++---- sim/common/gentmap.c | 79 ----- sim/common/local.mk | 1 + sim/common/nltvals.def | 248 --------------- sim/common/target-newlib-syscall.c | 634 +++++++++++++++++++++++++++++++++++++ sim/common/target-newlib-syscall.h | 237 ++++++++++++++ sim/cr16/Makefile.in | 3 - sim/cr16/interp.c | 3 + sim/cr16/simops.c | 73 ++--- sim/d10v/Makefile.in | 5 +- sim/d10v/interp.c | 3 + sim/d10v/simops.c | 54 ++-- sim/iq2000/iq2000.c | 16 +- sim/lm32/traps.c | 4 +- sim/m32c/syscalls.c | 18 +- sim/mcore/Makefile.in | 3 - sim/mcore/interp.c | 5 + sim/mips/Makefile.in | 2 +- sim/moxie/interp.c | 12 +- sim/ppc/Makefile.in | 36 +-- sim/riscv/Makefile.in | 3 - sim/riscv/interp.c | 2 + sim/rx/syscalls.c | 20 +- sim/sh/Makefile.in | 3 - sim/sh/interp.c | 45 +-- sim/v850/Makefile.in | 2 - sim/v850/interp.c | 3 + sim/v850/simops.c | 88 ++--- 33 files changed, 1152 insertions(+), 696 deletions(-) delete mode 100644 sim/common/gentmap.c delete mode 100644 sim/common/nltvals.def create mode 100644 sim/common/target-newlib-syscall.c create mode 100644 sim/common/target-newlib-syscall.h