2009-05-11 Craig Howland <howland@LGSInnovations.com>
* libm/machine/i386/f_llrint.c: Remove llrint() definition. * libm/machine/i386/f_llrintf.c: Remove llrintf() definition.
This commit is contained in:
parent
46777e0a3d
commit
ca3a040abf
|
@ -1,3 +1,8 @@
|
||||||
|
2009-05-11 Craig Howland <howland@LGSInnovations.com>
|
||||||
|
|
||||||
|
* libm/machine/i386/f_llrint.c: Remove llrint() definition.
|
||||||
|
* libm/machine/i386/f_llrintf.c: Remove llrintf() definition.
|
||||||
|
|
||||||
2009-05-08 Nick Clifton <nickc@redhat.com>
|
2009-05-08 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* MAINTAINERS: Add myself as a maintainer for the MN10300 and to
|
* MAINTAINERS: Add myself as a maintainer for the MN10300 and to
|
||||||
|
|
|
@ -43,8 +43,9 @@ These functions return the rounded integer value of <[x]>.
|
||||||
|
|
||||||
PORTABILITY
|
PORTABILITY
|
||||||
<<llrint>>, <<llrintf>> and <<llrintl>> are ANSI.
|
<<llrint>>, <<llrintf>> and <<llrintl>> are ANSI.
|
||||||
<<llrint>>, <<llrintf>> and <<llrintl>> are only available on i386 platforms when
|
The fast math versions of <<llrint>>, <<llrintf>> and <<llrintl>> are only
|
||||||
hardware floating point support is available and when compiling with GCC.
|
available on i386 platforms when hardware floating point support is available
|
||||||
|
and when compiling with GCC.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -65,10 +66,5 @@ long long int _f_llrint (double x)
|
||||||
return _result;
|
return _result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For now, we only have the fast math version. */
|
|
||||||
long long int llrint (double x) {
|
|
||||||
return _f_llrint(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* !_SOFT_FLOAT */
|
#endif /* !_SOFT_FLOAT */
|
||||||
#endif /* __GNUC__ */
|
#endif /* __GNUC__ */
|
||||||
|
|
|
@ -29,10 +29,5 @@ long long int _f_llrintf (float x)
|
||||||
return _result;
|
return _result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For now, we only have the fast math version. */
|
|
||||||
long long int llrintf (float x) {
|
|
||||||
return _f_llrintf(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* !_SOFT_FLOAT */
|
#endif /* !_SOFT_FLOAT */
|
||||||
#endif /* __GNUC__ */
|
#endif /* __GNUC__ */
|
||||||
|
|
Loading…
Reference in New Issue