From: Jim Wilson Date: Fri, 1 Apr 1994 02:56:15 +0000 (-0800) Subject: (INIT_SECTION_ASM_OP): Don't set the alloc flag. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fdd0d6b621f7added350687b00e2fc7e53bb468;p=gcc.git (INIT_SECTION_ASM_OP): Don't set the alloc flag. ({CTORS,DTORS}_SECTION_ASM_OP): Set execinstr flag. From-SVN: r6937 --- 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. */