diff options
author | Stan Cox <coxs@gnu.org> | 1996-12-13 21:36:14 +0000 |
---|---|---|
committer | Stan Cox <coxs@gnu.org> | 1996-12-13 21:36:14 +0000 |
commit | 444a059e63d451801cd1715068e8064fda46a153 (patch) | |
tree | 64dca23ec54871eb60dac2a39b03668818c782da /gcc | |
parent | 7cae778a2dc641c3e0ca1abbecd2d04bb6d574f4 (diff) | |
download | gcc-444a059e63d451801cd1715068e8064fda46a153.zip gcc-444a059e63d451801cd1715068e8064fda46a153.tar.gz gcc-444a059e63d451801cd1715068e8064fda46a153.tar.bz2 |
(CONST_SECTION_ASM_OP): Add .align 1
From-SVN: r13309
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/dgux.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/i386/dgux.h b/gcc/config/i386/dgux.h index 92ba176..469ce14 100644 --- a/gcc/config/i386/dgux.h +++ b/gcc/config/i386/dgux.h @@ -25,7 +25,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "i386/sysv4.h" #ifndef VERSION_INFO2 -#define VERSION_INFO2 "$Revision: 1.4 $" +#define VERSION_INFO2 "$Revision: 1.5 $" #endif #ifndef VERSION_STRING @@ -277,3 +277,7 @@ char insn; int insn_; char * file_; int line_; fprintf ((FILE), "\t.backalign %s,%d,%d\n", &buf[1], 1<<(LOG), \ ((TARGET_PENTIUMPRO || TARGET_486) && LOG==4) ? 6 : 2);\ } + +/* add .align 1 to avoid .backalign bug in assembler */ +#undef CONST_SECTION_ASM_OP +#define CONST_SECTION_ASM_OP ".section\t.rodata\n\t.align 1" |