From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 4AE5F3858D35; Mon, 6 Jul 2020 11:18:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4AE5F3858D35 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Removed #ifndef _ARM_PCS_VFP_ from sys/fenv.h for arm X-Act-Checkin: newlib-cygwin X-Git-Author: Eshan dhawan via Newlib X-Git-Refname: refs/heads/master X-Git-Oldrev: bb96bd03b0b9be5ed63127771687ac4877092ef8 X-Git-Newrev: 104caeb7b1dcd1377dfcfc267c95e1159cf83ef6 Message-Id: <20200706111837.4AE5F3858D35@sourceware.org> Date: Mon, 6 Jul 2020 11:18:37 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jul 2020 11:18:37 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=104caeb7b1dcd1377dfcfc267c95e1159cf83ef6 commit 104caeb7b1dcd1377dfcfc267c95e1159cf83ef6 Author: Eshan dhawan via Newlib Date: Sat Jul 4 04:11:06 2020 +0530 Removed #ifndef _ARM_PCS_VFP_ from sys/fenv.h for arm Signed-off-by: Eshan dhawan Diff: --- newlib/libc/machine/arm/sys/fenv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newlib/libc/machine/arm/sys/fenv.h b/newlib/libc/machine/arm/sys/fenv.h index af74c5f47..740995a1a 100644 --- a/newlib/libc/machine/arm/sys/fenv.h +++ b/newlib/libc/machine/arm/sys/fenv.h @@ -94,7 +94,7 @@ extern const fenv_t *_fe_dfl_env; #define _ENABLE_MASK (FE_ALL_EXCEPT << _FPUSW_SHIFT) #endif -#ifndef __ARM_PCS_VFP + int feclearexcept(int excepts); int fegetexceptflag(fexcept_t *flagp, int excepts); @@ -113,7 +113,7 @@ int fedisableexcept(int __mask); int fegetexcept(void); #endif /* __BSD_VISIBLE */ -#endif /* __ARM_PCS_VFP */ + #ifdef __cplusplus }