mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 00:00:06 +00:00
36775c3ba3
1997-06-21 17:35 Ulrich Drepper <drepper@cygnus.com> * argp/argp.h: Remove extra #endif. Pretty print. * md5-crypt/md5.h: Likewise. * ctype/ctype.h: Don't use <gnu/types.h> but <bits/types.h>. * wctype/wctype.h: Likewise. * sysdeps/unix/sysv/linux/Makefile: Build stdio_lim.h in correct directory. * sysdeps/libm-i387/s_ilogb.S: Add fwait to ensure we get the result. * sysdeps/libm-i387/s_ilogbf.S: Likewise. * sysdeps/libm-i387/s_ilogbl.S: Likewise. * sysdeps/libm-i387/s_lrint.S: Likewise. * sysdeps/libm-i387/s_llrint.S: Likewise.
23 lines
309 B
ArmAsm
23 lines
309 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_ilogbf.S,v 1.4 1995/10/22 20:32:43 pk Exp $")
|
|
|
|
ENTRY(__ilogbf)
|
|
flds 4(%esp)
|
|
fxtract
|
|
pushl %eax
|
|
fstpl %st
|
|
|
|
fistpl (%esp)
|
|
fwait
|
|
popl %eax
|
|
|
|
ret
|
|
END (__ilogbf)
|
|
weak_alias (__ilogbf, ilogbf)
|