Commit bb779a52 by Denis Chertykov Committed by Denis Chertykov

* config/avr/avr.c (asm_output_section_name): bugfix.

From-SVN: r34473
parent 97a69409
Fri Jun 9 20:35:13 2000 Denis Chertykov <denisc@overta.ru>
* config/avr/avr.c (asm_output_section_name): bugfix.
2000-06-09 Jason Merrill <jason@casey.soma.redhat.com>
* timevar.def: Add TV_EXPAND.
......
......@@ -3217,7 +3217,7 @@ asm_output_section_name(file, decl, name, reloc)
const char *name;
int reloc ATTRIBUTE_UNUSED;
{
fprintf (FILE, ".section\t%s,\"%s\",@progbits\n", name, \
fprintf (file, ".section\t%s,\"%s\",@progbits\n", name, \
decl && TREE_CODE (decl) == FUNCTION_DECL ? "ax" :
decl && TREE_READONLY (decl) ? "a" : "aw");
}
......
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