diff options
| author | Elliott Hughes <enh@google.com> | 2013-12-22 20:03:07 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-12-22 20:03:07 +0000 |
| commit | 17c9fe7d2f396294a09344a253b2a16ae400df14 (patch) | |
| tree | 04a45e9bdf45539d45c2e2871a5968359dc60d3a /libc | |
| parent | 3b2f4142aa4f2892ecbea89a256b4f5fc94e777a (diff) | |
| parent | 5063791535bc7541a4b46c24c4e5c9f330e5025f (diff) | |
| download | bionic-17c9fe7d2f396294a09344a253b2a16ae400df14.zip bionic-17c9fe7d2f396294a09344a253b2a16ae400df14.tar.gz bionic-17c9fe7d2f396294a09344a253b2a16ae400df14.tar.bz2 | |
Merge "Fix MIPS build."
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/arch-mips/bionic/_exit_with_stack_teardown.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/arch-mips/bionic/_exit_with_stack_teardown.S b/libc/arch-mips/bionic/_exit_with_stack_teardown.S index ce05ab8..8f624c3 100644 --- a/libc/arch-mips/bionic/_exit_with_stack_teardown.S +++ b/libc/arch-mips/bionic/_exit_with_stack_teardown.S @@ -41,7 +41,7 @@ _exit_with_stack_teardown: syscall // If munmap failed, we ignore the failure and exit anyway. - move $a0, 0 + li $a0, 0 li $v0, __NR_exit syscall // The exit syscall does not return. |
