summaryrefslogtreecommitdiffstats
path: root/lib/libc/amd64/stdlib/div.S
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/amd64/stdlib/div.S')
-rw-r--r--lib/libc/amd64/stdlib/div.S20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/libc/amd64/stdlib/div.S b/lib/libc/amd64/stdlib/div.S
new file mode 100644
index 0000000..366010c
--- /dev/null
+++ b/lib/libc/amd64/stdlib/div.S
@@ -0,0 +1,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