Remove extra shift and OR of CHARMASK.
authorRoland McGrath <roland@gnu.org>
Fri, 9 Dec 1994 20:16:06 +0000 (20:16 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 9 Dec 1994 20:16:06 +0000 (20:16 +0000)
sysdeps/alpha/memchr.c
sysdeps/alpha/strchr.c

index c6f99bf..11ff542 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1993 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
 
 The GNU C Library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public License as
@@ -47,7 +47,6 @@ memchr (const void *s, int c, size_t n)
   charmask = c | (c << 8);
   charmask |= charmask << 16;
   charmask |= charmask << 32;
-  charmask |= charmask << 64;
 
   for (;;)
     {
index fc56d51..666e0c0 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1993 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
 
 The GNU C Library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public License as
@@ -43,7 +43,6 @@ strchr (const char *str, int c)
   charmask = c | (c << 8);
   charmask |= charmask << 16;
   charmask |= charmask << 32;
-  charmask |= charmask << 64;
 
   for (;;)
     {