]> sourceware.org Git - newlib-cygwin.git/commitdiff
2009-05-11 Craig Howland <howland@LGSInnovations.com>
authorJeff Johnston <jjohnstn@redhat.com>
Mon, 11 May 2009 21:58:05 +0000 (21:58 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Mon, 11 May 2009 21:58:05 +0000 (21:58 +0000)
        * libm/machine/i386/f_llrint.c: Remove llrint() definition.
        * libm/machine/i386/f_llrintf.c: Remove llrintf() definition.

newlib/ChangeLog
newlib/libm/machine/i386/f_llrint.c
newlib/libm/machine/i386/f_llrintf.c

index 9a4b1934a512c7aeb164f8829d976dcbee288b8c..08d0421f6b81c9580a8b4298121c2808399a7dfe 100644 (file)
@@ -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>
 
        * MAINTAINERS: Add myself as a maintainer for the MN10300 and to
index 0fe27d7df6ceeb1704de6c0d7ac890ffeb972a84..10285ebd0ab66f60c24e0dd2e207c53af481ef82 100644 (file)
@@ -43,8 +43,9 @@ These functions return the rounded integer value of <[x]>.
 
 PORTABILITY
 <<llrint>>, <<llrintf>> and <<llrintl>> are ANSI.
-<<llrint>>, <<llrintf>> and <<llrintl>> are only available on i386 platforms when
-hardware floating point support is available and when compiling with GCC.
+The fast math versions of <<llrint>>, <<llrintf>> and <<llrintl>> are only
+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;
 }
 
-/* For now, we only have the fast math version.  */
-long long int llrint (double x) {
-  return _f_llrint(x);
-}
-
 #endif /* !_SOFT_FLOAT */
 #endif /* __GNUC__ */
index 6b2dfb39be457f3109ce3480ef17d681367e476a..427ad204cf59eee4d408c1ceab59fcb2fba92266 100644 (file)
@@ -29,10 +29,5 @@ long long int _f_llrintf (float x)
   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 /* __GNUC__ */
This page took 0.057323 seconds and 5 git commands to generate.