From 940d3122c9c88eb3e46f8862a02a668fa0f4cf2b Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Tue, 14 Apr 2015 17:02:31 -0700 Subject: [PATCH] Fix addition of extra arg to cfi_restore. Change-Id: I8fdcc1ae3e91b69ccbcec756a89e1ccb4fa1be53 --- libc/arch-x86/bionic/syscall.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libc/arch-x86/bionic/syscall.S b/libc/arch-x86/bionic/syscall.S index 963e4c566..2a1510273 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)