diff options
author | Geoff Keating <geoffk@cygnus.com> | 2001-12-06 23:41:33 +0000 |
---|---|---|
committer | Geoff Keating <geoffk@cygnus.com> | 2001-12-06 23:41:33 +0000 |
commit | 6f064efa4c28e8f026d1bd07cfe49add44d085aa (patch) | |
tree | 86a76310234d22cba1e8eb0770bab218ea0c3f84 /sysdeps/powerpc/fpu/fe_nomask.c | |
parent | 231340451b333e70a89d890ad702b513551d8de6 (diff) | |
download | glibc-6f064efa4c28e8f026d1bd07cfe49add44d085aa.tar.gz glibc-6f064efa4c28e8f026d1bd07cfe49add44d085aa.tar.xz glibc-6f064efa4c28e8f026d1bd07cfe49add44d085aa.zip |
* sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr
save/restore functions here. (libm-support): Don't define these functions here. * sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore functions here. * sysdeps/powerpc/fe_nomask.c: Move to... * sysdeps/powerpc/fpu/fe_nomask.c: ... here. * sysdeps/powerpc/fprrest.S: Move to... * sysdeps/powerpc/fpu/fprrest.S: ... here. * sysdeps/powerpc/fprsave.S: Move to... * sysdeps/powerpc/fpu/fprsave.S: ... here. 2001-12-06 Geoff Keating <geoffk@redhat.com> * sysdeps/powerpc/Makefile (sysdep_routines): Don't build the fpr save/restore functions here. (libm-support): Don't define these functions here. * sysdeps/powerpc/fpu/Makefile: Build the fpr save/restore functions here. * sysdeps/powerpc/fe_nomask.c: Move to... * sysdeps/powerpc/fpu/fe_nomask.c: ... here. * sysdeps/powerpc/fprrest.S: Move to... * sysdeps/powerpc/fpu/fprrest.S: ... here. * sysdeps/powerpc/fprsave.S: Move to... * sysdeps/powerpc/fpu/fprsave.S: ... here.
Diffstat (limited to 'sysdeps/powerpc/fpu/fe_nomask.c')
-rw-r--r-- | sysdeps/powerpc/fpu/fe_nomask.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sysdeps/powerpc/fpu/fe_nomask.c b/sysdeps/powerpc/fpu/fe_nomask.c new file mode 100644 index 0000000000..ba45d85709 --- /dev/null +++ b/sysdeps/powerpc/fpu/fe_nomask.c @@ -0,0 +1,32 @@ +/* Procedure definition for FE_NOMASK_ENV. + Copyright (C) 1997 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +#include <fenv.h> +#include <errno.h> + +/* This is presently a stub, until it's decided how the kernels should + support this. */ + +const fenv_t * +__fe_nomask_env(void) +{ + __set_errno (ENOSYS); + return FE_ENABLED_ENV; +} +stub_warning (__fe_nomask_env) |