Commit 2fdd0d6b by Jim Wilson

(INIT_SECTION_ASM_OP): Don't set the alloc flag.

({CTORS,DTORS}_SECTION_ASM_OP): Set execinstr flag.

From-SVN: r6937
parent 210e5f2d
......@@ -171,9 +171,9 @@ do { ASM_OUTPUT_ALIGN ((FILE), 2); \
#define DATA_SECTION_ASM_OP ".section\t\".data\""
#define BSS_SECTION_ASM_OP ".section\t\".bss\""
#define CONST_SECTION_ASM_OP ".section\t\".rodata\""
#define INIT_SECTION_ASM_OP ".section\t\".init\",#alloc"
#define CTORS_SECTION_ASM_OP ".section\t\".ctors\",#alloc"
#define DTORS_SECTION_ASM_OP ".section\t\".dtors\",#alloc"
#define INIT_SECTION_ASM_OP ".section\t\".init\""
#define CTORS_SECTION_ASM_OP ".section\t\".ctors\",#alloc,#execinstr"
#define DTORS_SECTION_ASM_OP ".section\t\".dtors\",#alloc,#execinstr"
/* Assemble generic sections.
This is currently only used to support section attributes. */
......
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