diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-06-16 15:07:12 -0700 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-06-16 20:17:45 -0700 |
commit | c22eb807b0c8125101f6a274795425be2bbd0386 (patch) | |
tree | 12f3b90aa183a801d36ac26efbd0b21dd4ec6f8e /sysdeps/x86_64/multiarch/stpncpy.c | |
parent | 8da9f346cb2051844348785b8a932ec44489e0b7 (diff) | |
download | glibc-c22eb807b0c8125101f6a274795425be2bbd0386.tar.gz glibc-c22eb807b0c8125101f6a274795425be2bbd0386.tar.xz glibc-c22eb807b0c8125101f6a274795425be2bbd0386.zip |
x86: Rename generic functions with unique postfix for clarity
No functions are changed. It just renames generic implementations from '{func}_sse2' to '{func}_generic'. This is just because the postfix "_sse2" was overloaded and was used for files that had hand-optimized sse2 assembly implementations and files that just redirected back to the generic implementation. Full xcheck passed on x86_64.
Diffstat (limited to 'sysdeps/x86_64/multiarch/stpncpy.c')
-rw-r--r-- | sysdeps/x86_64/multiarch/stpncpy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/stpncpy.c b/sysdeps/x86_64/multiarch/stpncpy.c index 82fa53957d..879bc83f0b 100644 --- a/sysdeps/x86_64/multiarch/stpncpy.c +++ b/sysdeps/x86_64/multiarch/stpncpy.c @@ -25,6 +25,7 @@ # undef stpncpy # undef __stpncpy +# define GENERIC generic # define SYMBOL_NAME stpncpy # include "ifunc-strcpy.h" |