mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
14 lines
198 B
ArmAsm
14 lines
198 B
ArmAsm
|
.global __syscall
|
||
|
.hidden __syscall
|
||
|
.type __syscall,@function
|
||
|
__syscall:
|
||
|
movq %rdi,%rax
|
||
|
movq %rsi,%rdi
|
||
|
movq %rdx,%rsi
|
||
|
movq %rcx,%rdx
|
||
|
movq %r8,%r10
|
||
|
movq %r9,%r8
|
||
|
movq 8(%rsp),%r9
|
||
|
syscall
|
||
|
ret
|