aboutsummaryrefslogtreecommitdiff
path: root/file.inc
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2024-11-04 13:56:21 -0800
committerChristian Cunningham <cc@localhost>2024-11-04 13:56:21 -0800
commit7e7f7a1fca97a653230ba8a793d2c7fbb820da9a (patch)
treeae201a979819bce8e9604f39b2a26649255d7f68 /file.inc
parentccbc8a00aeb72f2b54bafacd6ccaad6f93c6e95e (diff)
Remove extraneous frame preservationHEADmaster
Diffstat (limited to 'file.inc')
-rw-r--r--file.inc4
1 files changed, 0 insertions, 4 deletions
diff --git a/file.inc b/file.inc
index ddf6275..66a422f 100644
--- a/file.inc
+++ b/file.inc
@@ -99,8 +99,6 @@ ffopen:
ret
ffread:
- push rbp
- mov rbp, rsp
mov rdi, [rax + fd_fd]
mov rdi, [rdi]
mov rsi, [rax + fd_buffer]
@@ -108,8 +106,6 @@ ffread:
mov rax, SYS_READ
syscall
;;
- mov rsp, rbp
- pop rbp
ret
print_filedata: