diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-26 23:06:54 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-12-26 23:06:54 +0000 |
commit | 0c4e40c5032e78bc99d55092f105582b3aee4681 (patch) | |
tree | e94a583f78fa1a51d38c9a2a637700b5008090ff /gcc/rtl.h | |
parent | 61748875d7f90dd42d1870793a6bbbbd9e8e7af2 (diff) | |
download | gcc-0c4e40c5032e78bc99d55092f105582b3aee4681.tar.gz |
1999-12-26 Zack Weinberg <zack@wolery.cumb.org>
* acconfig.h: New ENABLE flags: TREE_CHECKING, RTL_CHECKING,
GC_CHECKING, GC_ALWAYS_COLLECT.
* configure.in: Allow --enable-checking with an argument
listing check modes to enable.
* config.in, configure: Rebuilt.
* ggc-page.c, ggc-simple.c: Define GGC_POISON (and
GGC_ALWAYS_VERIFY for ggc-simple.c) only if
ENABLE_GC_CHECKING. Define GGC_ALWAYS_COLLECT only if
ENABLE_GC_ALWAYS_COLLECT.
* rtl.h, rtl.c: Change ENABLE_CHECKING to ENABLE_RTL_CHECKING
throughout.
* tree.h, tree.c: Change ENABLE_CHECKING to
ENABLE_TREE_CHECKING throughout.
* cp-tree.h: Replace ENABLE_CHECKING with ENABLE_TREE_CHECKING
throughout.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31093 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 3677c4e967d..95e51f5a680 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -226,7 +226,7 @@ typedef struct rtvec_def{ /* General accessor macros for accessing the fields of an rtx. */ -#if defined ENABLE_CHECKING && (GCC_VERSION >= 2007) +#if defined ENABLE_RTL_CHECKING && (GCC_VERSION >= 2007) /* The bit with a star outside the statement expr and an & inside is so that N can be evaluated only once. */ #define RTL_CHECK1(RTX, N, C1) \ @@ -293,7 +293,7 @@ extern void rtvec_check_failed_bounds PROTO((rtvec, int, const char *, int, const char *)) ATTRIBUTE_NORETURN; -#else /* not ENABLE_CHECKING */ +#else /* not ENABLE_RTL_CHECKING */ #define RTL_CHECK1(RTX, N, C1) ((RTX)->fld[N]) #define RTL_CHECK2(RTX, N, C1, C2) ((RTX)->fld[N]) |