Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / powerpc / fpu / fsetexcptflg.c
blob95193c1010c583e7ff3f650eff41d568f09b041e
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_libc.h>
21 int
22 __fesetexceptflag (const fexcept_t *flagp, int excepts)
24 fenv_union_t u;
25 fexcept_t flag;
27 /* Get the current state. */
28 u.fenv = fegetenv_register ();
30 /* Ignore exceptions not listed in 'excepts'. */
31 flag = *flagp & excepts;
33 /* Replace the exception status */
34 u.l = ((u.l & ~(FPSCR_STICKY_BITS & excepts))
35 | (flag & FPSCR_STICKY_BITS)
36 | (flag >> ((31 - FPSCR_VX) - (31 - FPSCR_VXSOFT))
37 & FE_INVALID_SOFTWARE));
39 /* Store the new status word (along with the rest of the environment).
40 This may cause floating-point exceptions if the restored state
41 requests it. */
42 fesetenv_register (u.fenv);
44 /* Deal with FE_INVALID_SOFTWARE not being implemented on some chips. */
45 if (flag & FE_INVALID)
46 feraiseexcept(FE_INVALID);
48 /* Success. */
49 return 0;
52 #include <shlib-compat.h>
53 #if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
54 strong_alias (__fesetexceptflag, __old_fesetexceptflag)
55 compat_symbol (libm, __old_fesetexceptflag, fesetexceptflag, GLIBC_2_1);
56 #endif
58 versioned_symbol (libm, __fesetexceptflag, fesetexceptflag, GLIBC_2_2);