repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Use INTUSE for
[glibc.git]
/
sysdeps
/
i386
/
fpu
/
e_fmodf.S
blob
bbce40976db657c961429d2e5ffd00d48de9e671
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Public domain.
4
* Adapted for float type by Ulrich Drepper <drepper@cygnus.com>.
5
*/
6
7
#include <machine/asm.h>
8
9
RCSID("$NetBSD: $")
10
11
ENTRY(__ieee754_fmodf)
12
flds 8(%esp)
13
flds 4(%esp)
14
1: fprem
15
fstsw %ax
16
sahf
17
jp 1b
18
fstp %st(1)
19
ret
20
END(__ieee754_fmodf)