Skip to content

Commit

Permalink
Fix tolower operation in strcasestr.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jul 30, 2010
1 parent 76e6d6b commit fe36dd0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2010-07-30 Ulrich Drepper <drepper@redhat.com>

* string/test-strcasestr.c: Test both ends of the range of characters.
* sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.

2010-07-29 Roland McGrath <roland@redhat.com>

[BZ #11856]
Expand Down
2 changes: 1 addition & 1 deletion string/test-strcasestr.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ do_test (size_t align1, size_t align2, size_t len1, size_t len2,
char *s1 = (char *) (buf1 + align1);
char *s2 = (char *) (buf2 + align2);

static const char d[] = "1234567890abcdef";
static const char d[] = "1234567890abcxyz";
#define dl (sizeof (d) - 1)
char *ss2 = s2;
for (size_t l = len2; l > 0; l = l > dl ? l - dl : 0)
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/x86_64/multiarch/strstr.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ __m128i_strloadu_tolower (const unsigned char *p, __m128i rangeuc,
__m128i frag = __m128i_strloadu (p);

#define UCLOW 0x4040404040404040ULL
#define UCHIGH 0x5a5a5a5a5a5a5a5aULL
#define UCHIGH 0x5b5b5b5b5b5b5b5bULL
#define LCQWORD 0x2020202020202020ULL
/* Compare if 'Z' > bytes. Inverted way to get a mask for byte <= 'Z'. */
__m128i r2 = _mm_cmpgt_epi8 (_mm_set1_epi64x (UCHIGH), frag);
Expand Down

0 comments on commit fe36dd0

Please sign in to comment.