This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from d6468d6b9 libgloss: rs6000: fix incorrect install dir for xil files new fd3ce87f7 Cygwin: check_reparse_point_target: fix comment format new a25730119 Cygwin: use .S suffix for assembler files new 8e83ca675 Cygwin: add local machine/asm.h header new 383032550 Cygwin: x86_64: import new memset.S from NetBSD new b09617a82 Cygwin: x86_64: import memchr.S from NetBSD new 43743ed75 Cygwin: x86_64: import latest NetBSD bcopy.S new 2af7dd956 Cygwin: x86_64: import swab.S from NetBSD
The 7 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: winsup/cygwin/Makefile.am | 12 +- winsup/cygwin/local_includes/machine/asm.h | 78 ++++++++++++ winsup/cygwin/path.cc | 8 +- winsup/cygwin/x86_64/bcopy.S | 192 +++++++++++++++++++++++++++++ winsup/cygwin/x86_64/memchr.S | 109 ++++++++++++++++ winsup/cygwin/x86_64/memcpy.S | 4 + winsup/cygwin/x86_64/memcpy.s | 131 -------------------- winsup/cygwin/x86_64/memmove.S | 4 + winsup/cygwin/x86_64/mempcpy.S | 5 + winsup/cygwin/x86_64/memset.S | 93 ++++++++++++++ winsup/cygwin/x86_64/memset.s | 69 ----------- winsup/cygwin/x86_64/swab.S | 47 +++++++ winsup/cygwin/x86_64/wmemcpy.S | 5 + winsup/cygwin/x86_64/wmemmove.S | 5 + winsup/cygwin/x86_64/wmempcpy.S | 6 + 15 files changed, 562 insertions(+), 206 deletions(-) create mode 100644 winsup/cygwin/local_includes/machine/asm.h create mode 100644 winsup/cygwin/x86_64/bcopy.S create mode 100644 winsup/cygwin/x86_64/memchr.S create mode 100644 winsup/cygwin/x86_64/memcpy.S delete mode 100644 winsup/cygwin/x86_64/memcpy.s create mode 100644 winsup/cygwin/x86_64/memmove.S create mode 100644 winsup/cygwin/x86_64/mempcpy.S create mode 100644 winsup/cygwin/x86_64/memset.S delete mode 100644 winsup/cygwin/x86_64/memset.s create mode 100644 winsup/cygwin/x86_64/swab.S create mode 100644 winsup/cygwin/x86_64/wmemcpy.S create mode 100644 winsup/cygwin/x86_64/wmemmove.S create mode 100644 winsup/cygwin/x86_64/wmempcpy.S