This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/ifunc/c in repository glibc.
discards 1d116af9de x86-64: Implement strcat family IFUNC selectors in C discards b2ca002956 Use IFUNC memcmp in libc.so discards e38d9c0b56 Use IFUNC memset in libc.so discards e04f3bf242 Use IFUNC memmove in libc.so discards b8dfb237f6 x86-64: Implement strcpy family IFUNC selectors in C new 779dc1e3de x86-64: Implement strcpy family IFUNC selectors in C new 360da5b1e9 Use IFUNC memmove in libc.so new c9c67a0925 Use IFUNC memset in libc.so new ae0717e1c7 Use IFUNC memcmp in libc.so new 19b25a00c6 x86-64: Implement strcat family IFUNC selectors in C new 34bb970d1b x86-64: Implement wcscpy IFUNC selector in C new 9f6adcf328 x86-64: Implement strcspn/strpbrk/strspn IFUNC selectors in C
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (1d116af9de) \ N -- N -- N refs/heads/hjl/ifunc/c (9f6adcf328)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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: sysdeps/x86_64/multiarch/Makefile | 1 + .../multiarch/{ifunc-avx2.h => ifunc-sse4_2.h} | 10 ++-- sysdeps/x86_64/multiarch/stpcpy.c | 1 + sysdeps/x86_64/multiarch/stpncpy.c | 1 + sysdeps/x86_64/multiarch/strcat.c | 1 + sysdeps/x86_64/multiarch/strcpy.c | 1 + .../multiarch/{strcpy-sse2.S => strcspn-sse2.S} | 8 +-- sysdeps/x86_64/multiarch/strcspn.S | 69 ---------------------- sysdeps/x86_64/multiarch/{strncpy.c => strcspn.c} | 17 +++--- sysdeps/x86_64/multiarch/strncpy.c | 3 +- .../multiarch/{strcpy-sse2.S => strpbrk-sse2.S} | 9 +-- sysdeps/x86_64/multiarch/strpbrk.S | 5 -- sysdeps/x86_64/multiarch/{strncpy.c => strpbrk.c} | 17 +++--- .../multiarch/{strcpy-sse2.S => strspn-sse2.S} | 8 +-- sysdeps/x86_64/multiarch/strspn.S | 50 ---------------- sysdeps/x86_64/multiarch/{strcpy.c => strspn.c} | 16 ++--- sysdeps/x86_64/multiarch/wcscpy.S | 40 ------------- .../{ifunc-unaligned-ssse3.h => wcscpy.c} | 21 ++++--- sysdeps/x86_64/strcspn.S | 5 +- sysdeps/x86_64/strpbrk.S | 1 + 20 files changed, 66 insertions(+), 218 deletions(-) copy sysdeps/x86_64/multiarch/{ifunc-avx2.h => ifunc-sse4_2.h} (79%) copy sysdeps/x86_64/multiarch/{strcpy-sse2.S => strcspn-sse2.S} (86%) delete mode 100644 sysdeps/x86_64/multiarch/strcspn.S copy sysdeps/x86_64/multiarch/{strncpy.c => strcspn.c} (76%) copy sysdeps/x86_64/multiarch/{strcpy-sse2.S => strpbrk-sse2.S} (84%) delete mode 100644 sysdeps/x86_64/multiarch/strpbrk.S copy sysdeps/x86_64/multiarch/{strncpy.c => strpbrk.c} (76%) copy sysdeps/x86_64/multiarch/{strcpy-sse2.S => strspn-sse2.S} (87%) delete mode 100644 sysdeps/x86_64/multiarch/strspn.S copy sysdeps/x86_64/multiarch/{strcpy.c => strspn.c} (77%) delete mode 100644 sysdeps/x86_64/multiarch/wcscpy.S copy sysdeps/x86_64/multiarch/{ifunc-unaligned-ssse3.h => wcscpy.c} (77%)