Implemented unwind info for __syscall function

This commit is contained in:
Alexey Milovidov 2020-03-03 05:29:51 +03:00
parent 826f6a65c4
commit 8d679b570a

View File

@ -2,6 +2,7 @@
.hidden __syscall
.type __syscall,@function
__syscall:
.cfi_startproc
movq %rdi,%rax
movq %rsi,%rdi
movq %rdx,%rsi
@ -11,3 +12,4 @@ __syscall:
movq 8(%rsp),%r9
syscall
ret
.cfi_endproc