OSDN Git Service

Add missing clobbered register.
authornickc <nickc>
Wed, 20 Feb 2002 14:42:02 +0000 (14:42 +0000)
committernickc <nickc>
Wed, 20 Feb 2002 14:42:02 +0000 (14:42 +0000)
newlib/ChangeLog
newlib/libc/machine/xscale/strchr.c

index 3d34734..58a22e1 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-20  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * libc/machine/xscale/strchr.c (strchr): Add 'r1' to the list of
+       clobbered registers.
+
 2002-02-19  Thomas Fitzsimmons  <fitzsim@redhat.com>
 
        * configure.host (newlib_cflags): When host is in m68* add
index 6ea5032..027077c 100644 (file)
@@ -60,7 +60,7 @@ strchr (const char *s, int c)
 1:"
        : "=&r" (s)
        : "r" (c2), "0" (s)
-       : "r2", "r3", "r5", "r6", "cc");
+       : "r1", "r2", "r3", "r5", "r6", "cc");
 #endif
 
   while (*s && *s != c)