diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2009-07-26 13:32:28 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-07-26 13:32:28 -0700 |
commit | 7956a3d27c6552f57c8b1c3893d55e501fe30e14 (patch) | |
tree | 06f80fd0fd395cfa8cbe282cf5adc97147deb22c /sysdeps/x86_64/strncmp.S | |
parent | 7b7f43bed134db6a0da34282fffcbf0af10d4613 (diff) | |
download | glibc-7956a3d27c6552f57c8b1c3893d55e501fe30e14.tar glibc-7956a3d27c6552f57c8b1c3893d55e501fe30e14.tar.gz glibc-7956a3d27c6552f57c8b1c3893d55e501fe30e14.tar.bz2 glibc-7956a3d27c6552f57c8b1c3893d55e501fe30e14.zip |
Add SSE2 support to str{,n}cmp for x86-64.
Diffstat (limited to 'sysdeps/x86_64/strncmp.S')
-rw-r--r-- | sysdeps/x86_64/strncmp.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/x86_64/strncmp.S b/sysdeps/x86_64/strncmp.S new file mode 100644 index 0000000000..0af34e7f15 --- /dev/null +++ b/sysdeps/x86_64/strncmp.S @@ -0,0 +1,3 @@ +#define STRCMP strncmp +#define USE_AS_STRNCMP +#include "strcmp.S" |