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
Add feature test macro _ISOC2Y_SOURCE
[glibc.git]
/
sysdeps
/
i386
/
fpu
/
e_remainderf.S
blob
475b7e2353a287541e077cfdc0737deb6ea1c61d
1
/*
2
* Public domain.
3
*/
4
5
#include <machine/asm.h>
6
#include <libm-alias-finite.h>
7
8
ENTRY(__ieee754_remainderf)
9
flds 8(%esp)
10
flds 4(%esp)
11
1: fprem1
12
fstsw %ax
13
sahf
14
jp 1b
15
fstp %st(1)
16
ret
17
END (__ieee754_remainderf)
18
libm_alias_finite (__ieee754_remainderf, __remainderf)