diff options
author | Chris Dearman <chris.dearman@imgtec.com> | 2014-08-20 16:39:47 -0700 |
---|---|---|
committer | Raghu Gandham <raghu.gandham@imgtec.com> | 2014-09-02 12:41:01 -0700 |
commit | 296895f1a96f7340e565fa5fc6074b85b29fd8cf (patch) | |
tree | fcfdfa6f7d65b677e72ada641c8342c2991b489d /libc/arch-mips64 | |
parent | 86f594b19bc51ffe87bfacb6b42687af94c3c648 (diff) | |
download | bionic-296895f1a96f7340e565fa5fc6074b85b29fd8cf.zip bionic-296895f1a96f7340e565fa5fc6074b85b29fd8cf.tar.gz bionic-296895f1a96f7340e565fa5fc6074b85b29fd8cf.tar.bz2 |
MIPS64 syscall() arguments
The seventh argument for syscall is passed in a register, not on the stack
Change-Id: Idb69fac77d1f710cff5a3ab4ae1259feb61ae69d
Diffstat (limited to 'libc/arch-mips64')
-rw-r--r-- | libc/arch-mips64/bionic/syscall.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/arch-mips64/bionic/syscall.S b/libc/arch-mips64/bionic/syscall.S index c4fd009..e3710f8 100644 --- a/libc/arch-mips64/bionic/syscall.S +++ b/libc/arch-mips64/bionic/syscall.S @@ -52,7 +52,7 @@ LEAF(syscall,FRAMESZ) #else move a3, a4 move a4, a5 - REG_L a5, FRAMESZ(sp) + move a5, a6 #endif syscall move a0, v0 |