public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/release/2.35/master] x86: Add missing IS_IN (libc) check to strncmp-sse4_2.S
@ 2022-07-18 20:59 Sunil Pandey
  0 siblings, 0 replies; only message in thread
From: Sunil Pandey @ 2022-07-18 20:59 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c4050b25527c80a989b5f3349b7ea2bf5acf3fd2

commit c4050b25527c80a989b5f3349b7ea2bf5acf3fd2
Author: Noah Goldstein <goldstein.w.n@gmail.com>
Date:   Wed Jun 29 18:56:18 2022 -0700

    x86: Add missing IS_IN (libc) check to strncmp-sse4_2.S
    
    Was missing to for the multiarch build rtld-strncmp-sse4_2.os was
    being built and exporting symbols:
    
    build/glibc/string/rtld-strncmp-sse4_2.os:
    0000000000000000 T __strncmp_sse42
    
    Introduced in:
    
    commit 11ffcacb64a939c10cfc713746b8ec88837f5c4a
    Author: H.J. Lu <hjl.tools@gmail.com>
    Date:   Wed Jun 21 12:10:50 2017 -0700
    
        x86-64: Implement strcmp family IFUNC selectors in C
    
    (cherry picked from commit 96ac447d915ea5ecef3f9168cc13f4e731349a3b)

Diff:
---
 sysdeps/x86_64/multiarch/strncmp-sse4_2.S | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/sysdeps/x86_64/multiarch/strncmp-sse4_2.S b/sysdeps/x86_64/multiarch/strncmp-sse4_2.S
index 9773e5fc09..310a6dbe77 100644
--- a/sysdeps/x86_64/multiarch/strncmp-sse4_2.S
+++ b/sysdeps/x86_64/multiarch/strncmp-sse4_2.S
@@ -16,6 +16,8 @@
    License along with the GNU C Library; if not, see
    <https://www.gnu.org/licenses/>.  */
 
-#define STRCMP_SSE42 __strncmp_sse42
-#define USE_AS_STRNCMP
-#include "strcmp-sse42.S"
+#if IS_IN (libc)
+# define STRCMP_SSE42 __strncmp_sse42
+# define USE_AS_STRNCMP
+# include "strcmp-sse42.S"
+#endif


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-07-18 20:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-18 20:59 [glibc/release/2.35/master] x86: Add missing IS_IN (libc) check to strncmp-sse4_2.S Sunil Pandey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).