From owner-svn-src-all@FreeBSD.ORG Sat Jan 25 16:03:09 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60A952C0; Sat, 25 Jan 2014 16:03:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4CBFE1D46; Sat, 25 Jan 2014 16:03:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PG39Td081056; Sat, 25 Jan 2014 16:03:09 GMT (envelope-from andrew@svn.freebsd.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PG39wB081055; Sat, 25 Jan 2014 16:03:09 GMT (envelope-from andrew@svn.freebsd.org) Message-Id: <201401251603.s0PG39wB081055@svn.freebsd.org> From: Andrew Turner Date: Sat, 25 Jan 2014 16:03:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261161 - head/lib/msun/src X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jan 2014 16:03:09 -0000 Author: andrew Date: Sat Jan 25 16:03:08 2014 New Revision: 261161 URL: http://svnweb.freebsd.org/changeset/base/261161 Log: Use __fenv_static for all static inline functions. Modified: head/lib/msun/src/fenv-softfloat.h Modified: head/lib/msun/src/fenv-softfloat.h ============================================================================== --- head/lib/msun/src/fenv-softfloat.h Sat Jan 25 14:59:08 2014 (r261160) +++ head/lib/msun/src/fenv-softfloat.h Sat Jan 25 16:03:08 2014 (r261161) @@ -156,7 +156,7 @@ feupdateenv(const fenv_t *__envp) /* We currently provide no external definitions of the functions below. */ -static inline int +__fenv_static inline int feenableexcept(int __mask) { int __omask = __softfloat_float_exception_mask; @@ -165,7 +165,7 @@ feenableexcept(int __mask) return (__omask); } -static inline int +__fenv_static inline int fedisableexcept(int __mask) { int __omask = __softfloat_float_exception_mask; @@ -174,7 +174,7 @@ fedisableexcept(int __mask) return (__omask); } -static inline int +__fenv_static inline int fegetexcept(void) {