mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
69052a3a95
Since commit d957c4d3fa
(i386: Compile
rtld-*.os with -mno-sse -mno-mmx -mfpmath=387), vector intrinsics can
no longer be used in ld.so, even if the compiled code never makes it
into the final ld.so link. This commit adds the missing IS_IN (libc)
guard to the SSE 4.2 strcspn implementation, so that it can be used from
ld.so in the future.
5 lines
112 B
C
5 lines
112 B
C
#if IS_IN (libc)
|
|
# define __strcspn_sse2 __strcspn_ia32
|
|
# include <sysdeps/x86_64/multiarch/strcspn-c.c>
|
|
#endif
|