]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/hppa/fpu/fegetenv.c
Remove "Contributed by" lines
[thirdparty/glibc.git] / sysdeps / hppa / fpu / fegetenv.c
CommitLineData
839151ff 1/* Store current floating-point environment.
2b778ceb 2 Copyright (C) 2000-2021 Free Software Foundation, Inc.
839151ff 3 This file is part of the GNU C Library.
839151ff
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.
839151ff
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.
839151ff 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/>. */
839151ff
UD
18
19#include <fenv.h>
48dcf1c5 20#include <string.h>
839151ff
UD
21
22int
73a268c7 23__fegetenv (fenv_t *envp)
839151ff 24{
48dcf1c5 25 unsigned long long buf[4], *bufptr = buf;
5556231d 26
839151ff 27 __asm__ (
48dcf1c5
CD
28 "fstd,ma %%fr0,8(%1) \n\t"
29 "fldd -8(%1),%%fr0 \n\t"
30 : "=m" (buf), "+r" (bufptr) : : "%r0");
31 memcpy(envp, buf, sizeof (*envp));
839151ff
UD
32 return 0;
33}
73a268c7
JM
34libm_hidden_def (__fegetenv)
35weak_alias (__fegetenv, fegetenv)
36libm_hidden_weak (fegetenv)