Commit 77806925 by DJ Delorie Committed by DJ Delorie

mep.c (mep_asm_init_sections): Add section flags and ..vliw directive to VLIW sections.

* config/mep/mep.c (mep_asm_init_sections): Add section flags and
.vliw directive to VLIW sections.

From-SVN: r150288
parent ddead5ba
2009-07-30 DJ Delorie <dj@redhat.com>
* config/mep/mep.c (mep_asm_init_sections): Add section flags and
.vliw directive to VLIW sections.
2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* Makefile.in (AUTOCONF, ACLOCAL, ACLOCAL_AMFLAGS, aclocal_deps):
......
......@@ -7360,16 +7360,16 @@ mep_asm_init_sections (void)
"\t.section .srodata,\"a\"");
vtext_section
= get_unnamed_section (0, output_section_asm_op,
"\t.section .vtext,\"ax\"");
= get_unnamed_section (SECTION_CODE | SECTION_MEP_VLIW, output_section_asm_op,
"\t.section .vtext,\"axv\"\n\t.vliw");
vftext_section
= get_unnamed_section (0, output_section_asm_op,
"\t.section .vftext,\"ax\"");
= get_unnamed_section (SECTION_CODE | SECTION_MEP_VLIW, output_section_asm_op,
"\t.section .vftext,\"axv\"\t.vliw");
ftext_section
= get_unnamed_section (0, output_section_asm_op,
"\t.section .ftext,\"ax\"");
= get_unnamed_section (SECTION_CODE, output_section_asm_op,
"\t.section .ftext,\"ax\"\t.core");
}
......
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