This is the mail archive of the libc-hacker@sourceware.org mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix strstr/strcasestr/fma/fmaf on x86_64


Jakub Jelinek <jakub@redhat.com> writes:

> --- libc/sysdeps/x86_64/multiarch/strstr-c.c.jj	2009-07-23 08:59:29.000000000 +0200
> +++ libc/sysdeps/x86_64/multiarch/strstr-c.c	2009-09-02 10:34:48.000000000 +0200
> @@ -7,6 +7,7 @@
>  
>  #include "string/strstr.c"
>  
> -extern char *__strstr_sse42 (const char *, const char *);
> +extern char *__strstr_sse42 (const char *, const char *) attribute_hidden;
> +extern __typeof (__strstr_sse2) __strstr_sse2 attribute_hidden;

Shouldn't those use the libc_hidden* macros?

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]