-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for SSSE3 and SSE4.2 versions of strcasecmp on x86-64.
- Loading branch information
Ulrich Drepper
committed
Aug 1, 2010
1 parent
66f6765
commit 73507d3
Showing
6 changed files
with
394 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#define USE_SSSE3 1 | ||
#define USE_AS_STRCASECMP_L | ||
#define STRCMP __strcasecmp_l_ssse3 | ||
#define __strcasecmp __strcasecmp_ssse3 | ||
#include "../strcmp.S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#define STRCMP __strcasecmp_l | ||
#define USE_AS_STRCASECMP_L | ||
#include "strcmp.S" | ||
|
||
weak_alias (__strcasecmp_l, strcasecmp_l) | ||
libc_hidden_def (strcasecmp_l) |
Oops, something went wrong.