Skip to content

Commit 7b6ec3d

Browse files
committed
fix build regression on mips n32 due to typo in new inline syscall
commit 1bcdaee introduced the regression.
1 parent 28198ac commit 7b6ec3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/mipsn32/syscall_arch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ static inline long __syscall6(long n, long a, long b, long c, long d, long e, lo
124124
register long r6 __asm__("$6") = c;
125125
register long r7 __asm__("$7") = d;
126126
register long r8 __asm__("$8") = e;
127-
register long r8 __asm__("$9") = f;
127+
register long r9 __asm__("$9") = f;
128128
register long r2 __asm__("$2");
129129
__asm__ __volatile__ (
130130
"addu $2,$0,%2 ; syscall"

0 commit comments

Comments
 (0)