diff options
author | Serban Constantinescu <serban.constantinescu@arm.com> | 2014-06-07 18:15:49 +0100 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-06-09 11:36:37 -0700 |
commit | 602b4e482ce7bfa768a4c84baffc3051eca52346 (patch) | |
tree | 8ada1a70aa8d1714f0c9c4ade54941be6206d85b /libc/arch-arm64/syscalls/fstat64.S | |
parent | e18c271423d1777adfe18434558944082fc32c70 (diff) | |
download | bionic-602b4e482ce7bfa768a4c84baffc3051eca52346.zip bionic-602b4e482ce7bfa768a4c84baffc3051eca52346.tar.gz bionic-602b4e482ce7bfa768a4c84baffc3051eca52346.tar.bz2 |
AArch64: Remove Frame Record from ARM64 syscalls
This patch removes the frame record created on svc calls.
Change-Id: I67cf926ba59540e824fb9749d30538e332df7c1e
Signed-off-by: Serban Constantinescu <serban.constantinescu@arm.com>
Diffstat (limited to 'libc/arch-arm64/syscalls/fstat64.S')
-rw-r--r-- | libc/arch-arm64/syscalls/fstat64.S | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libc/arch-arm64/syscalls/fstat64.S b/libc/arch-arm64/syscalls/fstat64.S index ee0d9e7..9afe95b 100644 --- a/libc/arch-arm64/syscalls/fstat64.S +++ b/libc/arch-arm64/syscalls/fstat64.S @@ -3,20 +3,9 @@ #include <private/bionic_asm.h> ENTRY(fstat64) - stp x29, x30, [sp, #-16]! - .cfi_def_cfa_offset 16 - .cfi_rel_offset x29, 0 - .cfi_rel_offset x30, 8 - mov x29, sp - mov x8, __NR_fstat svc #0 - ldp x29, x30, [sp], #16 - .cfi_def_cfa_offset 0 - .cfi_restore x29 - .cfi_restore x30 - cmn x0, #(MAX_ERRNO + 1) cneg x0, x0, hi b.hi __set_errno |