diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-03-19 00:48:46 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-03-19 00:48:46 +0000 |
commit | 07dce77a7192d1a2c1ffead8300144f5f604338f (patch) | |
tree | 94de6966f9963bdb8b74522c9430993111cac451 /gcc/crtstuff.c | |
parent | 6bf4d4715c0e89b379288970c16923080c427dd1 (diff) | |
download | gcc-07dce77a7192d1a2c1ffead8300144f5f604338f.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@519 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index e377d83ab7c..e1f5934f305 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" |