diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-06-24 09:42:15 -0700 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2022-06-27 08:35:51 -0700 |
commit | afc6e4328ff80973bde50d5401691b4c4b2e522c (patch) | |
tree | a61ca560390afead7265afe2dfbf93446f86c379 /sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S | |
parent | 227afaa67213efcdce6a870ef5086200f1076438 (diff) | |
download | glibc-afc6e4328ff80973bde50d5401691b4c4b2e522c.tar.gz glibc-afc6e4328ff80973bde50d5401691b4c4b2e522c.tar.xz glibc-afc6e4328ff80973bde50d5401691b4c4b2e522c.zip |
x86: Put wcs{n}len-sse4.1 in the sse4.1 text section
Previously was missing but the two implementations shouldn't get in the sse2 (generic) text section.
Diffstat (limited to 'sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S')
-rw-r--r-- | sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S b/sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S index 5fa51fe07c..d2f7dd6e22 100644 --- a/sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S +++ b/sysdeps/x86_64/multiarch/wcsnlen-sse4_1.S @@ -1,5 +1,6 @@ #define AS_WCSLEN #define AS_STRNLEN #define strlen __wcsnlen_sse4_1 +#define SECTION(p) p##.sse4.1 #include "strlen-vec.S" |