diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-08-24 19:18:16 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-08-24 19:18:16 +0000 |
commit | 895ef79e04a953cac1493863bcae29ad85657ee1 (patch) | |
tree | 0411bbf8de2cc223a554481326a8df2a3d9baec6 /sysdeps/riscv | |
parent | ca3aac57efa89fc62813c86955a6b0f8dce8b3e7 (diff) | |
download | glibc-895ef79e04a953cac1493863bcae29ad85657ee1.tar.gz |
Move EXCEPTION_ENABLE_SUPPORTED out of math-tests.h.
Continuing moving macros out of math-tests.h to smaller headers
following typo-proof conventions instead of using #ifndef, this patch
moves the EXCEPTION_ENABLE_SUPPORTED macro out to its own
math-tests-trap.h header.
Tested with build-many-glibcs.py.
* sysdeps/generic/math-tests-trap.h: New file.
* sysdeps/generic/math-tests.h: Include <math-tests-trap.h>.
(EXCEPTION_ENABLE_SUPPORTED): Do not define here.
* sysdeps/aarch64/math-tests.h: Remove file.
* sysdeps/arm/math-tests.h: Likewise.
* sysdeps/riscv/math-tests.h: Likewise.
* sysdeps/aarch64/math-tests-trap.h: New file.
* sysdeps/arm/math-tests-trap.h: Likewise.
* sysdeps/riscv/math-tests-trap.h: Likewise.
Diffstat (limited to 'sysdeps/riscv')
-rw-r--r-- | sysdeps/riscv/math-tests-trap.h (renamed from sysdeps/riscv/math-tests.h) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/riscv/math-tests.h b/sysdeps/riscv/math-tests-trap.h index 6dd08c8757..7ea3d0c452 100644 --- a/sysdeps/riscv/math-tests.h +++ b/sysdeps/riscv/math-tests-trap.h @@ -1,7 +1,7 @@ -/* Configuration for math tests. RISC-V version +/* Configuration for math tests: support for enabling exception traps. + 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 @@ -17,7 +17,10 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#ifndef RISCV_MATH_TESTS_TRAP_H +#define RISCV_MATH_TESTS_TRAP_H 1 + /* Trapping exceptions are not supported on RISC-V. */ #define EXCEPTION_ENABLE_SUPPORTED(EXCEPT) ((EXCEPT) == 0) -#include_next <math-tests.h> +#endif /* math-tests-trap.h. */ |