mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 23:10:06 +00:00
46f8cf5712
Continuing moving macros out of math-tests.h to smaller headers following typo-proof conventions instead of using #ifndef, this patch moves SNAN_TESTS_PRESERVE_PAYLOAD out to its own sysdeps header. Tested with build-many-glibcs.py. * sysdeps/generic/math-tests-snan-payload.h: New file. * sysdeps/hppa/math-tests-snan-payload.h: Likewise. * sysdeps/mips/math-tests-snan-payload.h: Likewise. * sysdeps/riscv/math-tests-snan-payload.h: Likewise. * sysdeps/generic/math-tests.h: Include <math-tests-snan-payload.h>. (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here. * sysdeps/hppa/math-tests.h: Remove file. * sysdeps/mips/math-tests.h [!__mips_nan2008] (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here. * sysdeps/riscv/math-tests.h (SNAN_TESTS_PRESERVE_PAYLOAD): Likewise.
40 lines
1.6 KiB
C
40 lines
1.6 KiB
C
/* Configuration for math tests. RISC-V version
|
|
Copyright (C) 2014-2018 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Copied from the aarch64 version
|
|
|
|
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, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
/* Trapping exceptions are not supported on RISC-V. */
|
|
#define EXCEPTION_ENABLE_SUPPORTED(EXCEPT) ((EXCEPT) == 0)
|
|
|
|
/* Despite not supporting trapping exceptions, we support setting
|
|
floating-point exception flags on hard-float targets. These are not
|
|
supported on soft-float targets. */
|
|
#ifndef __riscv_flen
|
|
# define EXCEPTION_TESTS_float 0
|
|
# define EXCEPTION_TESTS_double 0
|
|
# define EXCEPTION_TESTS_long_double 0
|
|
#endif
|
|
|
|
/* On soft-float targets we only support the "to nearest" rounding mode. */
|
|
#ifndef __riscv_flen
|
|
# define ROUNDING_TESTS_float(MODE) ((MODE) == FE_TONEAREST)
|
|
# define ROUNDING_TESTS_double(MODE) ((MODE) == FE_TONEAREST)
|
|
# define ROUNDING_TESTS_long_double(MODE) ((MODE) == FE_TONEAREST)
|
|
#endif
|
|
|
|
#include_next <math-tests.h>
|