diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-11-22 20:50:01 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-11-22 20:50:01 -0500 |
commit | 7d310ed1d086d9874b7ca40933ff870a8adc75d9 (patch) | |
tree | 171814e41046b948688cd887d171978ac200791e | |
parent | 8cd0b11eafeaaec3df5113cb39094e5456ca6b22 (diff) | |
download | musl-7d310ed1d086d9874b7ca40933ff870a8adc75d9.tar.gz musl-7d310ed1d086d9874b7ca40933ff870a8adc75d9.tar.xz musl-7d310ed1d086d9874b7ca40933ff870a8adc75d9.zip |
remove old clang workarounds from arm syscall implementation
the register constraints in the non-clang case were tested to work on clang back to 3.2, and earlier versions of clang have known bugs that preclude building musl. there may be other reasons to prefer not to use inline syscalls, but if so the function-call-based implementations should be added back in a unified way for all archs.
-rw-r--r-- | arch/arm/syscall_arch.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/arch/arm/syscall_arch.h b/arch/arm/syscall_arch.h index e10748a4..845f2e4d 100644 --- a/arch/arm/syscall_arch.h +++ b/arch/arm/syscall_arch.h @@ -5,8 +5,6 @@ long (__syscall)(long, ...); -#ifndef __clang__ - #define __asm_syscall(...) do { \ __asm__ __volatile__ ( "svc 0" \ : "=r"(r0) : __VA_ARGS__ : "memory"); \ @@ -54,35 +52,6 @@ static inline long __syscall4(long n, long a, long b, long c, long d) __asm_syscall("r"(r7), "0"(r0), "r"(r1), "r"(r2), "r"(r3)); } -#else - -static inline long __syscall0(long n) -{ - return (__syscall)(n); -} - -static inline long __syscall1(long n, long a) -{ - return (__syscall)(n, a); -} - -static inline long __syscall2(long n, long a, long b) -{ - return (__syscall)(n, a, b); -} - -static inline long __syscall3(long n, long a, long b, long c) -{ - return (__syscall)(n, a, b, c); -} - -static inline long __syscall4(long n, long a, long b, long c, long d) -{ - return (__syscall)(n, a, b, c, d); -} - -#endif - static inline long __syscall5(long n, long a, long b, long c, long d, long e) { return (__syscall)(n, a, b, c, d, e); |