From 895ef79e04a953cac1493863bcae29ad85657ee1 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 24 Aug 2018 19:18:16 +0000 Subject: 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 . (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. --- sysdeps/arm/math-tests-trap.h | 26 ++++++++++++++++++++++++++ sysdeps/arm/math-tests.h | 22 ---------------------- 2 files changed, 26 insertions(+), 22 deletions(-) create mode 100644 sysdeps/arm/math-tests-trap.h delete mode 100644 sysdeps/arm/math-tests.h (limited to 'sysdeps/arm') diff --git a/sysdeps/arm/math-tests-trap.h b/sysdeps/arm/math-tests-trap.h new file mode 100644 index 0000000000..855f0daa28 --- /dev/null +++ b/sysdeps/arm/math-tests-trap.h @@ -0,0 +1,26 @@ +/* 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 + 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 + . */ + +#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) + +#endif /* math-tests-trap.h. */ diff --git a/sysdeps/arm/math-tests.h b/sysdeps/arm/math-tests.h deleted file mode 100644 index 6f5aed453d..0000000000 --- a/sysdeps/arm/math-tests.h +++ /dev/null @@ -1,22 +0,0 @@ -/* Configuration for math tests. ARM version. - Copyright (C) 2013-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 - 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 - . */ - -/* Not all VFP implementations support trapping exceptions. */ -#define EXCEPTION_ENABLE_SUPPORTED(EXCEPT) ((EXCEPT) == 0) - -#include_next -- cgit v1.2.3