From: Nick Clifton Date: Thu, 26 Jun 2014 09:10:02 +0000 (+0000) Subject: * config/frv/frv.c (frv_in_small_data_p): Remove redundant assert. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53d51ddb7dde27cd60328b795321d04ee9ab51fb;p=gcc.git * config/frv/frv.c (frv_in_small_data_p): Remove redundant assert. From-SVN: r212017 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a9ae2605b90..9b975ce09a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2014-06-26 Nick Clifton + * config/frv/frv.c (frv_in_small_data_p): Remove redundant assert. + * doc/extend.texi (Function Attributes): Fix typo in description of RX vector attribute. diff --git a/gcc/config/frv/frv.c b/gcc/config/frv/frv.c index 98a5336a995..d282ef2eb9b 100644 --- a/gcc/config/frv/frv.c +++ b/gcc/config/frv/frv.c @@ -9488,7 +9488,6 @@ frv_in_small_data_p (const_tree decl) section_name = DECL_SECTION_NAME (decl); if (section_name) { - gcc_assert (TREE_CODE (section_name) == STRING_CST); if (frv_string_begins_with (section_name, ".sdata")) return true; if (frv_string_begins_with (section_name, ".sbss"))