diff options
Diffstat (limited to 'sysdeps/x86_64/multiarch/strnlen.S')
-rw-r--r-- | sysdeps/x86_64/multiarch/strnlen.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/x86_64/multiarch/strnlen.S b/sysdeps/x86_64/multiarch/strnlen.S index 044b910c6e..4df05fc7da 100644 --- a/sysdeps/x86_64/multiarch/strnlen.S +++ b/sysdeps/x86_64/multiarch/strnlen.S @@ -1,5 +1,6 @@ /* multiple version of strnlen - Copyright (C) 2011 Free Software Foundation, Inc. + All versions must be listed in ifunc-impl-list.c. + Copyright (C) 2011-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -40,6 +41,8 @@ END(__strnlen) # define ENTRY(name) \ .type __strnlen_sse2, @function; \ .align 16; \ + .globl __strnlen_sse2; \ + .hidden __strnlen_sse2; \ __strnlen_sse2: cfi_startproc; \ CALL_MCOUNT # undef END |