summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-05-05 11:10:42 -0400
committerRich Felker <dalias@aerifal.cx>2019-05-05 11:10:42 -0400
commit7b6ec3de7192daf255a22ad7113732c8262f0f63 (patch)
treecc8f401e759a497f409eda0d5fd669f6b1a1c6e5
parent28198ac3afd33fb9017ad1283eb794e3a77832f9 (diff)
downloadmusl-7b6ec3de7192daf255a22ad7113732c8262f0f63.tar.gz
fix build regression on mips n32 due to typo in new inline syscall
commit 1bcdaeee6e659f1d856717c9aa562a068f2f3bd4 introduced the regression.
-rw-r--r--arch/mipsn32/syscall_arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mipsn32/syscall_arch.h b/arch/mipsn32/syscall_arch.h
index 2ebf0306..7b11740f 100644
--- a/arch/mipsn32/syscall_arch.h
+++ b/arch/mipsn32/syscall_arch.h
@@ -124,7 +124,7 @@ static inline long __syscall6(long n, long a, long b, long c, long d, long e, lo
register long r6 __asm__("$6") = c;
register long r7 __asm__("$7") = d;
register long r8 __asm__("$8") = e;
- register long r8 __asm__("$9") = f;
+ register long r9 __asm__("$9") = f;
register long r2 __asm__("$2");
__asm__ __volatile__ (
"addu $2,$0,%2 ; syscall"