Update copyright notices with scripts/update-copyrights
[glibc.git] / ports / sysdeps / arm / fsetexcptflg.c
blob0c88c0fa70ecda14baa35e9c7696ba3918e2dfbe
1 /* Set floating-point environment exception handling.
2 Copyright (C) 1997-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <fenv.h>
20 #include <math.h>
21 #include <fpu_control.h>
22 #include <arm-features.h>
25 int
26 __fesetexceptflag (const fexcept_t *flagp, int excepts)
28 if (ARM_HAVE_VFP)
30 fexcept_t temp;
32 /* Get the current environment. */
33 _FPU_GETCW (temp);
35 /* Set the desired exception mask. */
36 temp &= ~(excepts & FE_ALL_EXCEPT);
37 temp |= (*flagp & excepts & FE_ALL_EXCEPT);
39 /* Save state back to the FPU. */
40 _FPU_SETCW (temp);
42 /* Success. */
43 return 0;
46 /* Unsupported, so fail unless nothing needs to be done. */
47 return (excepts != 0);
50 #include <shlib-compat.h>
51 #if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
52 strong_alias (__fesetexceptflag, __old_fesetexceptflag)
53 compat_symbol (libm, __old_fesetexceptflag, fesetexceptflag, GLIBC_2_1);
54 #endif
56 versioned_symbol (libm, __fesetexceptflag, fesetexceptflag, GLIBC_2_2);