Commit 34a6c2ec by Richard Henderson Committed by Richard Henderson

alpha.c (alpha_in_small_data_p): Return false for STRING_CST.

        * config/alpha/alpha.c (alpha_in_small_data_p): Return false for
        STRING_CST.

From-SVN: r53952
parent 62b14292
2002-05-28 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_in_small_data_p): Return false for
STRING_CST.
2002-05-28 Richard Henderson <rth@redhat.com>
* config.gcc: Obsolete mn10200.
2002-05-28 Neil Booth <neil@daikokuya.demon.co.uk>
......
......@@ -1584,6 +1584,10 @@ static bool
alpha_in_small_data_p (exp)
tree exp;
{
/* We want to merge strings, so we never consider them small data. */
if (TREE_CODE (exp) == STRING_CST)
return false;
if (TREE_CODE (exp) == VAR_DECL && DECL_SECTION_NAME (exp))
{
const char *section = TREE_STRING_POINTER (DECL_SECTION_NAME (exp));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment