diff options
author | Liubov Dmitrieva <liubov.dmitrieva@intel.com> | 2011-08-04 15:33:38 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-08-04 15:33:38 -0400 |
commit | 5fa16e9b016b34788b9a48b5ab9752a583bb987c (patch) | |
tree | e62092078eefe8f18b9491d98cff56f244332669 /sysdeps/i386/i686/multiarch/strncat-c.c | |
parent | 8c1a459f9a64abee69c154c8a0e5ab9be86256e4 (diff) | |
download | glibc-5fa16e9b016b34788b9a48b5ab9752a583bb987c.tar.gz glibc-5fa16e9b016b34788b9a48b5ab9752a583bb987c.tar.xz glibc-5fa16e9b016b34788b9a48b5ab9752a583bb987c.zip |
Improve x86-32 strcat functions with SSE2/SSSE3
Diffstat (limited to 'sysdeps/i386/i686/multiarch/strncat-c.c')
-rw-r--r-- | sysdeps/i386/i686/multiarch/strncat-c.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/i386/i686/multiarch/strncat-c.c b/sysdeps/i386/i686/multiarch/strncat-c.c new file mode 100644 index 0000000000..132a000545 --- /dev/null +++ b/sysdeps/i386/i686/multiarch/strncat-c.c @@ -0,0 +1,8 @@ +#define STRNCAT __strncat_ia32 +#ifdef SHARED +#undef libc_hidden_def +#define libc_hidden_def(name) \ + __hidden_ver1 (__strncat_ia32, __GI___strncat, __strncat_ia32); +#endif + +#include "string/strncat.c" |