Commit e3981aab by David Edelsohn Committed by David Edelsohn

rs6000.c (rs6000_gen_section_name): Do not include file extension in section name.

        * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
        file extension in section name.

From-SVN: r61334
parent 89c4b810
2003-01-15 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
file extension in section name.
2003-01-15 Richard Earnshaw <rearnsha@arm.com>
* flow.c (find_auto_inc): Also try to generate a PRE_MODIFY with
......
......@@ -1681,6 +1681,8 @@ mask64_operand (op, mode)
/* Find the transition, and check that all bits above are 1's. */
lsb = c & -c;
/* Match if all the bits above are 1's (or c is zero). */
return c == -lsb;
}
return 0;
......@@ -12008,6 +12010,7 @@ rs6000_gen_section_name (buf, filename, section_desc)
{
strcpy (p, section_desc);
p += strlen (section_desc);
break;
}
else if (ISALNUM (*q))
......
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