From owner-svn-src-head@FreeBSD.ORG Thu Jun 14 03:27:02 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EDF6106566B; Thu, 14 Jun 2012 03:27:02 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id EC4EF8FC0A; Thu, 14 Jun 2012 03:27:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q5E3R1ux066461; Thu, 14 Jun 2012 03:27:01 GMT (envelope-from kientzle@svn.freebsd.org) Received: (from kientzle@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5E3R1FD066459; Thu, 14 Jun 2012 03:27:01 GMT (envelope-from kientzle@svn.freebsd.org) Message-Id: <201206140327.q5E3R1FD066459@svn.freebsd.org> From: Tim Kientzle Date: Thu, 14 Jun 2012 03:27:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r237039 - head/lib/libc/arm X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jun 2012 03:27:02 -0000 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;