diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-25 20:30:16 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-25 20:30:16 +0000 |
commit | 42f1312d21ef975e173173324790f72f2773c291 (patch) | |
tree | ed5fd51a94931a71963cf875db8d4a02b3fd4d0f /gcc/config.in | |
parent | 6060326b958357944f740b769e1df80c2a2287e4 (diff) | |
download | gcc-42f1312d21ef975e173173324790f72f2773c291.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33420 138bc75d-0d04-0410-961f-82ee72b054a4
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 17fb30c753d..de8bb9f3a3b 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 + |