summaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-10 01:30:03 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-10 01:30:03 +0000
commit9b535aa8812a090779542fd26b49e13181084a59 (patch)
tree5d86ce0ee4187b73d334b321531660f3e3ab4587 /gcc/rtl.h
parentd214dfcf5f0744c1818e57ddae3ec4ec5a28cec2 (diff)
downloadgcc-9b535aa8812a090779542fd26b49e13181084a59.tar.gz
* rtl.h (ENABLE_RTL_FLAG_CHECKING): Also check for gcc >= 2.7.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53352 138bc75d-0d04-0410-961f-82ee72b054a4
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 be37b033e9e..2406b73d966 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) \