]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
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 c6f99bfd6fb5c19fac78a88a1c337d02295b3a55..11ff542f257ddb190be2ecedd9bc5a4f89e6fe75 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 fc56d518cc6b4576e1ff53bf4766ff8117ccc0eb..666e0c0196c0546d995449a64d8dcd555ed9f4fa 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 (;;)
     {