]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Thu, 19 Mar 1992 00:48:46 +0000 (00:48 +0000)
committerRichard Stallman <rms@gnu.org>
Thu, 19 Mar 1992 00:48:46 +0000 (00:48 +0000)
From-SVN: r519

gcc/config/svr3.h
gcc/crtstuff.c

index 7726da12d7d219cd1d3ac47773feda83153e9bf5..112f8c2185443721df37b8ad133fa945ab5659ea 100644 (file)
@@ -184,9 +184,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
 #define USE_CONST_SECTION      0
 
-#define INIT_SECTION_ASM_OP     "\t.section\t.init"
+#define INIT_SECTION_ASM_OP     ".section\t.init"
 #define FINI_SECTION_ASM_OP     ".section .fini,\"x\""
-#define CONST_SECTION_ASM_OP   "\t.section\t.rodata, \"x\""
+#define CONST_SECTION_ASM_OP   ".section\t.rodata, \"x\""
 
 #define DTORS_SECTION_ASM_OP    FINI_SECTION_ASM_OP
 /* CTORS_SECTION_ASM_OP is machine-dependent
index e377d83ab7c54ac0b3f0ee30cd837158fae14b6d..e1f5934f30550d3ab91df2a2b6b64e0c9c0c865d 100644 (file)
@@ -53,10 +53,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "tm.h"
 
 #ifndef CTORS_SECTION_ASM_OP
-#define CTORS_SECTION_ASM_OP   "\t.section\t.ctors,\"a\",@progbits"
+#define CTORS_SECTION_ASM_OP   ".section\t.ctors,\"a\",@progbits"
 #endif
 #ifndef DTORS_SECTION_ASM_OP
-#define DTORS_SECTION_ASM_OP   "\t.section\t.dtors,\"a\",@progbits"
+#define DTORS_SECTION_ASM_OP   ".section\t.dtors,\"a\",@progbits"
 #endif
 
 #include "gbl-ctors.h"