Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/lib/libc/amd64/stdlib/ldiv.S
39553 views
1
/* $NetBSD: ldiv.S,v 1.1 2001/06/19 00:25:04 fvdl Exp $ */
2
3
/*-
4
* Written by gcc 3.0.
5
* Copy/pasted by Frank van der Linden ([email protected])
6
*/
7
8
#include <machine/asm.h>
9
ENTRY(ldiv)
10
movq %rdi,%rax
11
cqto
12
idivq %rsi
13
ret
14
END(ldiv)
15
16
.section .note.GNU-stack,"",%progbits
17
18