diff options
author | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-04-25 20:30:16 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-04-25 20:30:16 +0000 |
commit | 119d24d17a770d4a535c5da3897469d1c7dba354 (patch) | |
tree | ed5fd51a94931a71963cf875db8d4a02b3fd4d0f /gcc/config.in | |
parent | c5a047348d810987513ce54c6533c1314ad19593 (diff) | |
download | gcc-119d24d17a770d4a535c5da3897469d1c7dba354.zip gcc-119d24d17a770d4a535c5da3897469d1c7dba354.tar.gz gcc-119d24d17a770d4a535c5da3897469d1c7dba354.tar.bz2 |
acconfig.h (ENABLE_STD_NAMESPACE, [...]): Delete entries.
* acconfig.h (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
ENABLE_GC_ALWAYS_COLLECT): Delete entries.
* configure.in (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
ENABLE_GC_ALWAYS_COLLECT): Use three argument form of AC_DEFINE
for these macros. Clean up spacing and linewraps.
From-SVN: r33420
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 55 |
1 files changed, 26 insertions, 29 deletions
diff --git a/gcc/config.in b/gcc/config.in index 17fb30c..de8bb9f 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1,33 +1,4 @@ /* config.in. Generated automatically from configure.in by autoheader. */ -/* Define if you want to enable namespaces (-fhonor-std) by default. */ -#undef ENABLE_STD_NAMESPACE -#if !defined(ENABLE_STD_NAMESPACE) -# define ENABLE_STD_NAMESPACE 0 -#endif - -/* Define if you want more run-time sanity checks. This one gets a grab - bag of miscellaneous but relatively cheap checks. */ -#undef ENABLE_CHECKING - -/* Define if you want all operations on trees (the basic data - structure of the front ends) to be checked for dynamic type safety - at runtime. This is moderately expensive. */ -#undef ENABLE_TREE_CHECKING - -/* Define if you want all operations on RTL (the basic data structure - of the optimizer and back end) to be checked for dynamic type safety - at runtime. This is quite expensive. */ -#undef ENABLE_RTL_CHECKING - -/* Define if you want the garbage collector to do object poisoning and - other memory allocation checks. This is quite expensive. */ -#undef ENABLE_GC_CHECKING - -/* Define if you want the garbage collector to operate in maximally - paranoid mode, validating the entire heap and collecting garbage at - every opportunity. This is extremely expensive. */ -#undef ENABLE_GC_ALWAYS_COLLECT - /* Define to 1 if NLS is requested. */ #undef ENABLE_NLS @@ -370,6 +341,29 @@ /* Define to enable the use of a default assembler. */ #undef DEFAULT_ASSEMBLER +/* Define if you want more run-time sanity checks. This one gets a grab + bag of miscellaneous but relatively cheap checks. */ +#undef ENABLE_CHECKING + +/* Define if you want all operations on trees (the basic data + structure of the front ends) to be checked for dynamic type safety + at runtime. This is moderately expensive. */ +#undef ENABLE_TREE_CHECKING + +/* Define if you want all operations on RTL (the basic data structure + of the optimizer and back end) to be checked for dynamic type safety + at runtime. This is quite expensive. */ +#undef ENABLE_RTL_CHECKING + +/* Define if you want the garbage collector to do object poisoning and + other memory allocation checks. This is quite expensive. */ +#undef ENABLE_GC_CHECKING + +/* Define if you want the garbage collector to operate in maximally + paranoid mode, validating the entire heap and collecting garbage at + every opportunity. This is extremely expensive. */ +#undef ENABLE_GC_ALWAYS_COLLECT + /* Define if your compiler understands volatile. */ #undef HAVE_VOLATILE @@ -429,3 +423,6 @@ /* Define if you want to always select the new-abi for g++. */ #undef ENABLE_NEW_GXX_ABI +/* Define to 1 if you want to enable namespaces (-fhonor-std) by default. */ +#undef ENABLE_STD_NAMESPACE + |