mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 17:50:20 +00:00
x86_64: Fix missing wcsncat function definition without multiarch (x86-64-v4)
This code expects the WCSCAT preprocessor macro to be predefined in case the evex implementation of the function should be defined with a name different from __wcsncat_evex. However, when glibc is built for x86-64-v4 without multiarch support, sysdeps/x86_64/wcsncat.S defines WCSNCAT variable instead of WCSCAT to build it as wcsncat. Rename the variable to WCSNCAT, as it is actually a better naming choice for the variable in this case. Reported-by: Kenton Groombridge Link: https://bugs.gentoo.org/921945 Fixes:64b8b6516b
("x86: Add evex optimized functions for the wchar_t strcpy family") Signed-off-by: Gabi Falk <gabifalk@gmx.com> Reviewed-by: Sunil K Pandey <skpgkp2@gmail.com> (cherry picked from commitdd5f891c1a
)
This commit is contained in:
parent
97bb89668d
commit
ab4ef4421f
@ -1,9 +1,9 @@
|
||||
#ifndef WCSCAT
|
||||
# define WCSCAT __wcsncat_evex
|
||||
#ifndef WCSNCAT
|
||||
# define WCSNCAT __wcsncat_evex
|
||||
#endif
|
||||
|
||||
#define USE_AS_WCSCPY
|
||||
#define USE_AS_STRCAT
|
||||
|
||||
#define STRNCAT WCSCAT
|
||||
#define STRNCAT WCSNCAT
|
||||
#include "strncat-evex.S"
|
||||
|
Loading…
Reference in New Issue
Block a user