aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2014-05-29 16:32:16 +0000
committerTom de Vries <vries@gcc.gnu.org>2014-05-29 16:32:16 +0000
commited00b1fb97eede0e1f72d69180259ce74079376f (patch)
tree87e955633409c0cfbbb7fa75977248a28e47c451 /gcc/rtl.h
parent710d672b08543f4d90157460e0564f287be797f2 (diff)
downloadgcc-ed00b1fb97eede0e1f72d69180259ce74079376f.zip
gcc-ed00b1fb97eede0e1f72d69180259ce74079376f.tar.gz
gcc-ed00b1fb97eede0e1f72d69180259ce74079376f.tar.bz2
Fix rtl-check build
2014-05-29 Tom de Vries <tom@codesourcery.com> * rtl.h (BLOCK_SYMBOL_CHECK): Use SYMBOL_REF_FLAGS. From-SVN: r211057
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 02ce424..51cfae5 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -708,7 +708,7 @@ struct GTY(()) rtvec_def {
#define BLOCK_SYMBOL_CHECK(RTX) __extension__ \
({ __typeof (RTX) const _symbol = (RTX); \
- const unsigned int flags = RTL_CHECKC1 (_symbol, 1, SYMBOL_REF).rt_int; \
+ const unsigned int flags = SYMBOL_REF_FLAGS (_symbol); \
if ((flags & SYMBOL_FLAG_HAS_BLOCK_INFO) == 0) \
rtl_check_failed_block_symbol (__FILE__, __LINE__, \
__FUNCTION__); \