aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/arm
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2018-08-24 19:18:16 +0000
committerJoseph Myers <joseph@codesourcery.com>2018-08-24 19:18:16 +0000
commit895ef79e04a953cac1493863bcae29ad85657ee1 (patch)
tree0411bbf8de2cc223a554481326a8df2a3d9baec6 /sysdeps/arm
parentca3aac57efa89fc62813c86955a6b0f8dce8b3e7 (diff)
downloadglibc-895ef79e04a953cac1493863bcae29ad85657ee1.zip
glibc-895ef79e04a953cac1493863bcae29ad85657ee1.tar.gz
glibc-895ef79e04a953cac1493863bcae29ad85657ee1.tar.bz2
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/arm')
-rw-r--r--sysdeps/arm/math-tests-trap.h (renamed from sysdeps/arm/math-tests.h)10
1 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/arm/math-tests.h b/sysdeps/arm/math-tests-trap.h
index 6f5aed4..855f0da 100644
--- a/sysdeps/arm/math-tests.h
+++ b/sysdeps/arm/math-tests-trap.h
@@ -1,5 +1,6 @@
-/* Configuration for math tests. ARM version.
- Copyright (C) 2013-2018 Free Software Foundation, Inc.
+/* Configuration for math tests: support for enabling exception traps.
+ ARM version.
+ Copyright (C) 2014-2018 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
@@ -16,7 +17,10 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
+#ifndef ARM_MATH_TESTS_TRAP_H
+#define ARM_MATH_TESTS_TRAP_H 1
+
/* Not all VFP implementations support trapping exceptions. */
#define EXCEPTION_ENABLE_SUPPORTED(EXCEPT) ((EXCEPT) == 0)
-#include_next <math-tests.h>
+#endif /* math-tests-trap.h. */