svn commit: r237039 - head/lib/libc/arm

Tim Kientzle kientzle at FreeBSD.org
Thu Jun 14 03:27:02 UTC 2012


Author: kientzle
Date: Thu Jun 14 03:27:01 2012
New Revision: 237039
URL: http://svn.freebsd.org/changeset/base/237039

Log:
  __flt_rounds is a public symbol (expands from the FLT_ROUNDS macro),
  so include it in the public namespace on arm just as with
  other architectures.
  
  This corrects r236816.
  
  Submitted by:	Jan Sieka
  MFC after:	1 week

Modified:
  head/lib/libc/arm/Symbol.map

Modified: head/lib/libc/arm/Symbol.map
==============================================================================
--- head/lib/libc/arm/Symbol.map	Thu Jun 14 00:51:53 2012	(r237038)
+++ head/lib/libc/arm/Symbol.map	Thu Jun 14 03:27:01 2012	(r237039)
@@ -31,6 +31,7 @@ FBSD_1.0 {
 	brk;
 	cerror;		/* XXX - Should this be .cerror (see sys/cerror.S)? */
 	sbrk;
+	__flt_rounds;
 };
 
 FBSDprivate_1.0 {
@@ -70,7 +71,6 @@ FBSDprivate_1.0 {
 	__divdf3;
 	__floatsisf;
 	__floatsidf;
-	__flt_rounds;
 	__fixsfsi;
 	__fixdfsi;
 	__fixunssfsi;


More information about the svn-src-head mailing list