diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-11-13 09:50:13 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-11-13 09:50:13 -0500 |
commit | 76e3966e9efc3808a9e7ad09121c5dfc1211c20b (patch) | |
tree | 7750f566972dcf12742c3881b5ca3a12cd3a6c49 /sysdeps/i386/i686/multiarch/strcasecmp_l.S | |
parent | 7edb22eff50b957c5b40815d0974639db19f5870 (diff) | |
download | glibc-76e3966e9efc3808a9e7ad09121c5dfc1211c20b.tar.gz glibc-76e3966e9efc3808a9e7ad09121c5dfc1211c20b.tar.xz glibc-76e3966e9efc3808a9e7ad09121c5dfc1211c20b.zip |
SSSE3 optimized strcasecmp and strncasecmp for x86-32
Diffstat (limited to 'sysdeps/i386/i686/multiarch/strcasecmp_l.S')
-rw-r--r-- | sysdeps/i386/i686/multiarch/strcasecmp_l.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/i386/i686/multiarch/strcasecmp_l.S b/sysdeps/i386/i686/multiarch/strcasecmp_l.S new file mode 100644 index 0000000000..1322bd86da --- /dev/null +++ b/sysdeps/i386/i686/multiarch/strcasecmp_l.S @@ -0,0 +1,5 @@ +#define STRCMP __strcasecmp_l +#define USE_AS_STRCASECMP_L +#include "strcmp.S" + +weak_alias (__strcasecmp_l, strcasecmp_l) |