]> sourceware.org Git - glibc.git/blame - sysdeps/mips/fpu/feupdateenv.c
elf: Make dl-fptr and dl-symaddr hppa specific
[glibc.git] / sysdeps / mips / fpu / feupdateenv.c
CommitLineData
cf025bb2 1/* Install given floating-point environment and raise exceptions.
dff8da6b 2 Copyright (C) 1998-2024 Free Software Foundation, Inc.
cf025bb2 3 This file is part of the GNU C Library.
cf025bb2
UD
4
5 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
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.
cf025bb2
UD
9
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
3214b89b 13 Lesser General Public License for more details.
cf025bb2 14
3214b89b 15 You should have received a copy of the GNU Lesser General Public
ab84e3ff 16 License along with the GNU C Library. If not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
cf025bb2
UD
18
19#include <fenv.h>
20#include <fpu_control.h>
21
22int
8116321f 23__feupdateenv (const fenv_t *envp)
cf025bb2
UD
24{
25 int temp;
26
27 /* Save current exceptions. */
28 _FPU_GETCW (temp);
29 temp &= FE_ALL_EXCEPT;
30
31 /* Install new environment. */
cd42798a 32 __fesetenv (envp);
cf025bb2 33
65cc53fe 34 /* Raise the saved exception. Incidentally for us the implementation
cf025bb2
UD
35 defined format of the values in objects of type fexcept_t is the
36 same as the ones specified using the FE_* constants. */
0747f818 37 __feraiseexcept (temp);
cf025bb2
UD
38
39 /* Success. */
40 return 0;
41}
8116321f
JM
42libm_hidden_def (__feupdateenv)
43weak_alias (__feupdateenv, feupdateenv)
44libm_hidden_weak (feupdateenv)
This page took 0.452892 seconds and 6 git commands to generate.