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:
authorJeff Johnston <jjohnstn@redhat.com>2005-04-28 22:40:39 +0400
committerJeff Johnston <jjohnstn@redhat.com>2005-04-28 22:40:39 +0400
commite525f6d51a38d6648ebba2a2c2b25f31d7bfe5ce (patch)
treeae63fc62e846fbffad0a5e47d6b1f628c20254e9 /libgloss/arm
parent5456408b8466470b135a0fc96dbc63a925244100 (diff)
2005-04-28 Shaun Jackman <sjackman@gmail.com>
* libgloss/syscalls.c (get_errno): Add an output register constraint.
Diffstat (limited to 'libgloss/arm')
-rw-r--r--libgloss/arm/syscalls.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libgloss/arm/syscalls.c b/libgloss/arm/syscalls.c
index e89022806..a215d7a50 100644
--- a/libgloss/arm/syscalls.c
+++ b/libgloss/arm/syscalls.c
@@ -179,7 +179,9 @@ get_errno (void)
#ifdef ARM_RDI_MONITOR
return do_AngelSWI (AngelSWI_Reason_Errno, NULL);
#else
- asm ("swi %a0" :: "i" (SWI_GetErrno));
+ register r0 asm("r0");
+ asm ("swi %a1" : "=3Dr"(r0) : "i" (SWI_GetErrno));
+ return r0;
#endif
}