Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 14 Jun 1999 09:25:22 +0000 (09:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 14 Jun 1999 09:25:22 +0000 (09:25 +0000)
* sysdeps/generic/strchr.c: Include <memcopy.h> and use reg_char
for character to search, to help the compiler.
* sysdeps/generic/strchrnul.c: Likewise.
* sysdeps/generic/memchr.c: Likewise.
* sysdeps/generic/memccpy.c: Likewise.
* sysdeps/generic/rawmemchr.c: Likewise.  Fix comment.

1999-06-13  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

ChangeLog
sysdeps/generic/memccpy.c
sysdeps/generic/memchr.c
sysdeps/generic/rawmemchr.c
sysdeps/generic/strchr.c
sysdeps/generic/strchrnul.c

index b217fd6..e2a5873 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 1999-06-13  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
 
+       * sysdeps/generic/strchr.c: Include <memcopy.h> and use reg_char
+       for character to search, to help the compiler.
+       * sysdeps/generic/strchrnul.c: Likewise.
+       * sysdeps/generic/memchr.c: Likewise.
+       * sysdeps/generic/memccpy.c: Likewise.
+       * sysdeps/generic/rawmemchr.c: Likewise.  Fix comment.
+
+1999-06-13  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
+
        * sysdeps/m68k/memchr.S: New file.
        * sysdeps/m68k/rawmemchr.S: New file.
        * sysdeps/m68k/strchr.S: New file.
index 44a874a..f7b496d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1995, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -17,6 +17,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <string.h>
+#include <memcopy.h>
 
 #undef __memccpy
 #undef memccpy
@@ -31,7 +32,7 @@ __memccpy (dest, src, c, n)
 {
   register const char *s = src;
   register char *d = dest;
-  register const int x = (unsigned char) c;
+  register const reg_char x = (unsigned char) c;
   register size_t i = n;
 
   while (i-- > 0)
index c8926c7..9ea9ce2 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1996, 1997, 1999 Free Software Foundation, Inc.
    Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se) and
    commentary by Jim Blandy (jimb@ai.mit.edu);
@@ -33,6 +33,9 @@
 
 #if defined (_LIBC)
 # include <string.h>
+# include <memcopy.h>
+#else
+# define reg_char char
 #endif
 
 #if defined (HAVE_LIMITS_H) || defined (_LIBC)
 
 /* Search no more than N bytes of S for C.  */
 __ptr_t
-memchr (s, c, n)
+memchr (s, c_in, n)
      const __ptr_t s;
-     int c;
+     int c_in;
      size_t n;
 {
   const unsigned char *char_ptr;
   const unsigned long int *longword_ptr;
   unsigned long int longword, magic_bits, charmask;
+  unsigned reg_char c;
 
-  c = (unsigned char) c;
+  c = (unsigned char) c_in;
 
   /* Handle the first few characters by reading one character at a time.
      Do this until CHAR_PTR is aligned on a longword boundary.  */
index c205968..e874dca 100644 (file)
@@ -33,6 +33,9 @@
 
 #if defined (_LIBC)
 # include <string.h>
+# include <memcopy.h>
+#else
+# define reg_char char
 #endif
 
 #if defined (HAVE_LIMITS_H) || defined (_LIBC)
 #undef memchr
 
 
-/* Search no more than N bytes of S for C.  */
+/* Find the first occurrence of C in S.  */
 __ptr_t
-__rawmemchr (s, c)
+__rawmemchr (s, c_in)
      const __ptr_t s;
-     int c;
+     int c_in;
 {
   const unsigned char *char_ptr;
   const unsigned long int *longword_ptr;
   unsigned long int longword, magic_bits, charmask;
+  unsigned reg_char c;
 
-  c = (unsigned char) c;
+  c = (unsigned char) c_in;
 
   /* Handle the first few characters by reading one character at a time.
      Do this until CHAR_PTR is aligned on a longword boundary.  */
index 7c1eb95..1103906 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 93, 94, 95, 96, 97, 99 Free Software Foundation, Inc.
    Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se) and
    bug fix and commentary by Jim Blandy (jimb@ai.mit.edu);
    Boston, MA 02111-1307, USA.  */
 
 #include <string.h>
+#include <memcopy.h>
 
 #undef strchr
 
 /* Find the first occurrence of C in S.  */
 char *
-strchr (s, c)
+strchr (s, c_in)
      const char *s;
-     int c;
+     int c_in;
 {
   const unsigned char *char_ptr;
   const unsigned long int *longword_ptr;
   unsigned long int longword, magic_bits, charmask;
+  unsigned reg_char c;
 
-  c = (unsigned char) c;
+  c = (unsigned char) c_in;
 
   /* Handle the first few characters by reading one character at a time.
      Do this until CHAR_PTR is aligned on a longword boundary.  */
index 1d6ece5..b88fecb 100644 (file)
    Boston, MA 02111-1307, USA.  */
 
 #include <string.h>
+#include <memcopy.h>
 
 #undef __strchrnul
 #undef strchrnul
 
 /* Find the first occurrence of C in S or the final NUL byte.  */
 char *
-__strchrnul (s, c)
+__strchrnul (s, c_in)
      const char *s;
-     int c;
+     int c_in;
 {
   const unsigned char *char_ptr;
   const unsigned long int *longword_ptr;
   unsigned long int longword, magic_bits, charmask;
+  unsigned reg_char c;
 
-  c = (unsigned char) c;
+  c = (unsigned char) c_in;
 
   /* Handle the first few characters by reading one character at a time.
      Do this until CHAR_PTR is aligned on a longword boundary.  */