aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-05-10 01:30:03 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-05-10 01:30:03 +0000
commit65212b6656718b46fc3721d5583b9ce4b7f33a77 (patch)
tree5d86ce0ee4187b73d334b321531660f3e3ab4587 /gcc/rtl.h
parent952589178550158f3c4897fd75de5ae5c3b439f4 (diff)
downloadgcc-65212b6656718b46fc3721d5583b9ce4b7f33a77.zip
gcc-65212b6656718b46fc3721d5583b9ce4b7f33a77.tar.gz
gcc-65212b6656718b46fc3721d5583b9ce4b7f33a77.tar.bz2
* rtl.h (ENABLE_RTL_FLAG_CHECKING): Also check for gcc >= 2.7.
From-SVN: r53352
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index be37b03..2406b73 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -337,7 +337,7 @@ extern void rtvec_check_failed_bounds PARAMS ((rtvec, int,
/* Access an individual rtx flag, with no checking of any kind. */
#define RTX_FLAG(RTX, FLAG) ((RTX)->FLAG)
-#if defined ENABLE_RTL_FLAG_CHECKING
+#if defined ENABLE_RTL_FLAG_CHECKING && (GCC_VERSION >= 2007)
#define RTL_FLAG_CHECK1(NAME, RTX, C1) __extension__ \
({ rtx const _rtx = (RTX); \
if (GET_CODE(_rtx) != C1) \