Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2002-02-20 17:42:03 +0300
committerNick Clifton <nickc@redhat.com>2002-02-20 17:42:03 +0300
commit2dd68dc2ffb689348a7cad668c7710e82c2ff406 (patch)
tree5304668dae0e6e4b7227e86aa3245cd826fce50c /newlib/libc/machine/xscale
parent55500bf14fdf743546aefb5208b02d55e43ae483 (diff)
Add missing clobbered register.
Diffstat (limited to 'newlib/libc/machine/xscale')
-rw-r--r--newlib/libc/machine/xscale/strchr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/machine/xscale/strchr.c b/newlib/libc/machine/xscale/strchr.c
index 6ea5032b0..027077cfc 100644
--- a/newlib/libc/machine/xscale/strchr.c
+++ b/newlib/libc/machine/xscale/strchr.c
@@ -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)