diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2016-09-30 18:57:49 +0000 |
---|---|---|
committer | Bernd Edlinger <edlinger@gcc.gnu.org> | 2016-09-30 18:57:49 +0000 |
commit | b06f87c7eb14eb7806cd1fafa779bde8792ed874 (patch) | |
tree | 856b607e7599d46bb6060beeafa9fae010d9de54 /gcc/config.in | |
parent | a7d75d596fdcdafb8b680f31438fbf2ebc8aff2e (diff) | |
download | gcc-b06f87c7eb14eb7806cd1fafa779bde8792ed874.zip gcc-b06f87c7eb14eb7806cd1fafa779bde8792ed874.tar.gz gcc-b06f87c7eb14eb7806cd1fafa779bde8792ed874.tar.bz2 |
configure.ac: Split CHECKING_P into CHECKING_P and ENABLE_EXTRA_CHECKING.
2016-09-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
* configure.ac: Split CHECKING_P into CHECKING_P and
ENABLE_EXTRA_CHECKING.
* configure: Regenerated.
* config.in: Adjust commment of CHECKING_P. Add ENABLE_EXTRA_CHECKING.
* common.opt (flag_checking): Use CHECKING_P and ENABLE_EXTRA_CHECKING.
From-SVN: r240677
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gcc/config.in b/gcc/config.in index 8470456..93a0301 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -30,14 +30,20 @@ #endif -/* Define to 1 if you want more run-time sanity checks. This one gets a grab - bag of miscellaneous but relatively cheap checks. Define to 2 if you want - also extra run-time checking that might affect code generation. */ +/* Define to 0/1 if you want more run-time sanity checks. This one gets a grab + bag of miscellaneous but relatively cheap checks. */ #ifndef USED_FOR_TARGET #undef CHECKING_P #endif +/* Define to 0/1 if you want also extra run-time checking that might affect + code generation. */ +#ifndef USED_FOR_TARGET +#undef ENABLE_EXTRA_CHECKING +#endif + + /* Define 0/1 to force the choice for exception handling model. */ #ifndef USED_FOR_TARGET #undef CONFIG_SJLJ_EXCEPTIONS |