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-Tag: releases/gcc-5.1.0~6649 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53d51ddb7dde27cd60328b795321d04ee9ab51fb;p=thirdparty%2Fgcc.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 a9ae2605b902..9b975ce09a33 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 98a5336a9951..d282ef2eb9b8 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"))