about summary refs log tree commit diff
path: root/sysdeps/x86_64/stpcpy.S
diff options
context:
space:
mode:
authorNoah Goldstein <goldstein.w.n@gmail.com>2022-07-12 12:29:02 -0700
committerNoah Goldstein <goldstein.w.n@gmail.com>2022-07-13 14:55:31 -0700
commit6b9006bfb03c5975f31de286311041d3c933f5ac (patch)
treed8af4955e33ee2c23a1641e9156447d556d2ca6a /sysdeps/x86_64/stpcpy.S
parent58e6cd4bcbe9f29949f1545953a17145bf732aa0 (diff)
downloadglibc-6b9006bfb03c5975f31de286311041d3c933f5ac.tar.gz
glibc-6b9006bfb03c5975f31de286311041d3c933f5ac.tar.xz
glibc-6b9006bfb03c5975f31de286311041d3c933f5ac.zip
x86: Move strcpy SSE2 implementation to multiarch/strcpy-sse2.S
This commit doesn't affect libc.so.6, its just housekeeping to prepare
for adding explicit ISA level support.

Tested build on x86_64 and x86_32 with/without multiarch.
Diffstat (limited to 'sysdeps/x86_64/stpcpy.S')
-rw-r--r--sysdeps/x86_64/stpcpy.S3
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/x86_64/stpcpy.S b/sysdeps/x86_64/stpcpy.S
index ec23de1416..b097c203dd 100644
--- a/sysdeps/x86_64/stpcpy.S
+++ b/sysdeps/x86_64/stpcpy.S
@@ -1,7 +1,6 @@
-#define USE_AS_STPCPY
 #define STRCPY __stpcpy
 
-#include <sysdeps/x86_64/strcpy.S>
+#include "multiarch/stpcpy-sse2.S"
 
 weak_alias (__stpcpy, stpcpy)
 libc_hidden_def (__stpcpy)