This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from 59f4a286a Update config.sub to GCC master branch version new 820dd5009 arc64: Add port for Synopsys DesignWare ARCv3 ISA
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: COPYING.LIBGLOSS | 4 +- COPYING.NEWLIB | 2 +- libgloss/Makefile.am | 3 + libgloss/Makefile.in | 1003 +++++++++++++++----- libgloss/arc64/Makefile.inc | 44 + libgloss/arc64/asm.h | 123 +++ libgloss/arc64/crt0.S | 160 ++++ .../arc/memcmp-stub.c => libgloss/arc64/crti.S | 27 +- .../arc/memcmp-stub.c => libgloss/arc64/crtn.S | 22 +- libgloss/configure | 21 +- libgloss/configure.ac | 7 +- libgloss/libnosys/acinclude.m4 | 2 +- newlib/Makefile.in | 765 ++++++++++----- newlib/configure | 13 + newlib/configure.host | 5 +- newlib/libc/acinclude.m4 | 2 +- newlib/libc/include/machine/ieeefp.h | 4 + newlib/libc/include/machine/setjmp.h | 10 + newlib/libc/machine/Makefile.inc | 3 + newlib/libc/machine/arc64/Makefile.inc | 13 + newlib/libc/machine/arc64/memchr.S | 371 ++++++++ newlib/libc/machine/{arc => arc64}/memcmp-stub.c | 8 +- newlib/libc/machine/arc64/memcmp.S | 269 ++++++ newlib/libc/machine/{arc => arc64}/memcpy-stub.c | 8 +- newlib/libc/machine/arc64/memcpy.S | 236 +++++ newlib/libc/machine/arc64/memmove.S | 312 ++++++ newlib/libc/machine/{arc => arc64}/memset-stub.c | 8 +- newlib/libc/machine/arc64/memset.S | 184 ++++ newlib/libc/machine/arc64/setjmp.S | 106 +++ newlib/libc/machine/arc64/strcat.S | 592 ++++++++++++ newlib/libc/machine/arc64/strcmp.S | 342 +++++++ newlib/libc/machine/arc64/strlen.S | 301 ++++++ .../machine/{arc/strchr-stub.c => arc64/sys/asm.h} | 43 +- 33 files changed, 4451 insertions(+), 562 deletions(-) create mode 100644 libgloss/arc64/Makefile.inc create mode 100644 libgloss/arc64/asm.h create mode 100644 libgloss/arc64/crt0.S copy newlib/libc/machine/arc/memcmp-stub.c => libgloss/arc64/crti.S (81%) copy newlib/libc/machine/arc/memcmp-stub.c => libgloss/arc64/crtn.S (82%) create mode 100644 newlib/libc/machine/arc64/Makefile.inc create mode 100644 newlib/libc/machine/arc64/memchr.S copy newlib/libc/machine/{arc => arc64}/memcmp-stub.c (89%) create mode 100644 newlib/libc/machine/arc64/memcmp.S copy newlib/libc/machine/{arc => arc64}/memcpy-stub.c (89%) create mode 100644 newlib/libc/machine/arc64/memcpy.S create mode 100644 newlib/libc/machine/arc64/memmove.S copy newlib/libc/machine/{arc => arc64}/memset-stub.c (89%) create mode 100644 newlib/libc/machine/arc64/memset.S create mode 100644 newlib/libc/machine/arc64/setjmp.S create mode 100644 newlib/libc/machine/arc64/strcat.S create mode 100644 newlib/libc/machine/arc64/strcmp.S create mode 100644 newlib/libc/machine/arc64/strlen.S copy newlib/libc/machine/{arc/strchr-stub.c => arc64/sys/asm.h} (60%)