From: Tom de Vries Date: Thu, 29 May 2014 16:32:16 +0000 (+0000) Subject: Fix rtl-check build X-Git-Tag: releases/gcc-5.1.0~7207 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed00b1fb97eede0e1f72d69180259ce74079376f;p=thirdparty%2Fgcc.git Fix rtl-check build 2014-05-29 Tom de Vries * rtl.h (BLOCK_SYMBOL_CHECK): Use SYMBOL_REF_FLAGS. From-SVN: r211057 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 789a71ce8afe..38d7cc84830f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-05-29 Tom de Vries + + * rtl.h (BLOCK_SYMBOL_CHECK): Use SYMBOL_REF_FLAGS. + 2014-05-29 Richard Earnshaw Richard Sandiford diff --git a/gcc/rtl.h b/gcc/rtl.h index 02ce4248d9c3..51cfae5ffa6a 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__); \