diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-07-16 19:50:13 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-07-16 13:50:13 -0600 |
commit | 6d32de1a3afc34ce838e6510458b8a0b5555a89e (patch) | |
tree | 2bf64ed076b0a61e03300a46437df51ccd9edefc /gcc | |
parent | d14f13ad68279dd13758beb603cf12784ff39cb9 (diff) | |
download | gcc-6d32de1a3afc34ce838e6510458b8a0b5555a89e.zip gcc-6d32de1a3afc34ce838e6510458b8a0b5555a89e.tar.gz gcc-6d32de1a3afc34ce838e6510458b8a0b5555a89e.tar.bz2 |
svr4.h (CONST_SECTION_ASM_OP): Do not emit assembler directive in column zero.
* config/svr4.h (CONST_SECTION_ASM_OP): Do not emit assembler
directive in column zero.
From-SVN: r28123
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/svr4.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a1ac774..bfb3604 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Fri Jul 16 13:48:09 1999 Jeffrey A Law (law@cygnus.com) + + * config/svr4.h (CONST_SECTION_ASM_OP): Do not emit assembler + directive in column zero. + Fri Jul 16 01:39:57 1999 Jeffrey A Law (law@cygnus.com) * m68k.c (output_function_prologue): Fix computation of save mask diff --git a/gcc/config/svr4.h b/gcc/config/svr4.h index 7fa30e8..f7299b3 100644 --- a/gcc/config/svr4.h +++ b/gcc/config/svr4.h @@ -440,7 +440,7 @@ do { \ #define USE_CONST_SECTION 1 -#define CONST_SECTION_ASM_OP ".section\t.rodata" +#define CONST_SECTION_ASM_OP "\t.section\t.rodata" /* Define the pseudo-ops used to switch to the .ctors and .dtors sections. |