diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-05-05 23:15:53 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-05-05 23:15:53 +0000 |
commit | 9cc53904f63c78982051e2b8d72e23e8f9cb864e (patch) | |
tree | 1257ab5be838722188b50970731f6adea6d3e57d | |
parent | 320be0a149f0e6f03f86b4b66a8424d41d34f01d (diff) | |
download | cygnal-9cc53904f63c78982051e2b8d72e23e8f9cb864e.tar.gz cygnal-9cc53904f63c78982051e2b8d72e23e8f9cb864e.tar.bz2 cygnal-9cc53904f63c78982051e2b8d72e23e8f9cb864e.zip |
2005-05-05 Tobias Anderberg <tobias.anderberg@axis.com>
* arm/syscalls.c (get_errno): Fix output register constraint.
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/arm/syscalls.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index a377d7d7e..42539179d 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2005-05-05 Tobias Anderberg <tobias.anderberg@axis.com> + + * arm/syscalls.c (get_errno): Fix output register constraint. + 2005-05-05 J"orn Rennecke <joern.rennecke@st.com> * rs6000/sim-getrusage.S: New file, broken out of: diff --git a/libgloss/arm/syscalls.c b/libgloss/arm/syscalls.c index a215d7a50..f0e60da8f 100644 --- a/libgloss/arm/syscalls.c +++ b/libgloss/arm/syscalls.c @@ -180,7 +180,7 @@ get_errno (void) return do_AngelSWI (AngelSWI_Reason_Errno, NULL); #else register r0 asm("r0"); - asm ("swi %a1" : "=3Dr"(r0) : "i" (SWI_GetErrno)); + asm ("swi %a1" : "=r"(r0) : "i" (SWI_GetErrno)); return r0; #endif } |