diff options
author | cognet <cognet@FreeBSD.org> | 2004-11-09 16:49:14 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2004-11-09 16:49:14 +0000 |
commit | 98ebb25e56d0f452f1cfd5d33770eeaedca698fd (patch) | |
tree | 8ccabba1a460da5c135164486fcb8597cd0c3fc5 /lib/libc/arm/SYS.h | |
parent | 7e3e230230217c6f10e0156b63efa735c2f9baef (diff) | |
download | FreeBSD-src-98ebb25e56d0f452f1cfd5d33770eeaedca698fd.zip FreeBSD-src-98ebb25e56d0f452f1cfd5d33770eeaedca698fd.tar.gz |
Use the RET macro.
For setjmp() and longjmp(), put the signal mask where it's supposed to be,
instead of in the space reserved for fp regs.
Diffstat (limited to 'lib/libc/arm/SYS.h')
-rw-r--r-- | lib/libc/arm/SYS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arm/SYS.h b/lib/libc/arm/SYS.h index c8bf2fe..b9bc742 100644 --- a/lib/libc/arm/SYS.h +++ b/lib/libc/arm/SYS.h @@ -74,11 +74,11 @@ #define PSEUDO_NOERROR(x) \ _SYSCALL_NOERROR(x); \ - mov r15, r14 + RET #define PSEUDO(x) \ _SYSCALL(x); \ - mov r15, r14 + RET #define RSYSCALL_NOERROR(x) \ |