diff options
| author | Christopher Ferris <cferris@google.com> | 2015-04-14 17:02:31 -0700 |
|---|---|---|
| committer | Christopher Ferris <cferris@google.com> | 2015-04-14 17:02:31 -0700 |
| commit | 940d3122c9c88eb3e46f8862a02a668fa0f4cf2b (patch) | |
| tree | 50014fbeeb9e07c364695063a35fe0f8c4e6cfce | |
| parent | a529efac4efa4641186fef5003752cc1c43ec763 (diff) | |
| download | bionic-940d3122c9c88eb3e46f8862a02a668fa0f4cf2b.zip bionic-940d3122c9c88eb3e46f8862a02a668fa0f4cf2b.tar.gz bionic-940d3122c9c88eb3e46f8862a02a668fa0f4cf2b.tar.bz2 | |
Fix addition of extra arg to cfi_restore.
Change-Id: I8fdcc1ae3e91b69ccbcec756a89e1ccb4fa1be53
| -rw-r--r-- | libc/arch-x86/bionic/syscall.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/arch-x86/bionic/syscall.S b/libc/arch-x86/bionic/syscall.S index 963e4c5..2a15102 100644 --- a/libc/arch-x86/bionic/syscall.S +++ b/libc/arch-x86/bionic/syscall.S @@ -52,15 +52,15 @@ ENTRY(syscall) # Restore the callee save registers. pop %ebp .cfi_adjust_cfa_offset -4 - .cfi_restore ebp, 0 + .cfi_restore ebp pop %edi .cfi_adjust_cfa_offset -4 - .cfi_restore edi, 0 + .cfi_restore edi pop %esi .cfi_adjust_cfa_offset -4 - .cfi_restore esi, 0 + .cfi_restore esi pop %ebx .cfi_adjust_cfa_offset -4 - .cfi_restore ebx, 0 + .cfi_restore ebx ret END(syscall) |
