aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-03-19 00:48:46 +0000
committerRichard Stallman <rms@gnu.org>1992-03-19 00:48:46 +0000
commitf4ce55dfedb75cf7e1fe8a9d6992ae2dfe9432e9 (patch)
tree94de6966f9963bdb8b74522c9430993111cac451 /gcc
parent1dfd223b8346b4033e810168b857e7d91fc51c47 (diff)
downloadgcc-f4ce55dfedb75cf7e1fe8a9d6992ae2dfe9432e9.zip
gcc-f4ce55dfedb75cf7e1fe8a9d6992ae2dfe9432e9.tar.gz
gcc-f4ce55dfedb75cf7e1fe8a9d6992ae2dfe9432e9.tar.bz2
*** empty log message ***
From-SVN: r519
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/svr3.h4
-rw-r--r--gcc/crtstuff.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/svr3.h b/gcc/config/svr3.h
index 7726da1..112f8c2 100644
--- a/gcc/config/svr3.h
+++ b/gcc/config/svr3.h
@@ -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
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c
index e377d83..e1f5934 100644
--- a/gcc/crtstuff.c
+++ b/gcc/crtstuff.c
@@ -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"