From 2fdd0d6b621f7added350687b00e2fc7e53bb468 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 31 Mar 1994 18:56:15 -0800 Subject: [PATCH] (INIT_SECTION_ASM_OP): Don't set the alloc flag. ({CTORS,DTORS}_SECTION_ASM_OP): Set execinstr flag. From-SVN: r6937 --- gcc/config/sparc/sysv4.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index ced9db7913f..786fcbcd0a4 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -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. */ -- 2.30.2