summaryrefslogtreecommitdiffstats
path: root/lib/libc/amd64/stdlib/div.S
blob: 366010c3d208a83deb65f68c66792021252c31b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*	$NetBSD: div.S,v 1.1 2001/06/19 00:25:04 fvdl Exp $	*/

/*-
 * Written by Frank van der Linden (fvdl@wasabisystems.com)
 * Public domain.
 */

#include <machine/asm.h>
__FBSDID("$FreeBSD$");

ENTRY(div)
	movl	%edi,%eax
	cltd
	idivl	%esi
	salq	$32,%rdx
	orq	%rdx,%rax
	ret
END(div)

	.section .note.GNU-stack,"",%progbits
OpenPOWER on IntegriCloud