summaryrefslogtreecommitdiff
path: root/gcc/config/i386/dgux.h
diff options
context:
space:
mode:
authorcoxs <coxs@138bc75d-0d04-0410-961f-82ee72b054a4>1996-12-13 21:36:14 +0000
committercoxs <coxs@138bc75d-0d04-0410-961f-82ee72b054a4>1996-12-13 21:36:14 +0000
commit5db3af13b55055c7a774d2ec50265477b9fef50f (patch)
tree64dca23ec54871eb60dac2a39b03668818c782da /gcc/config/i386/dgux.h
parentd8992b5c2c6bd18c5d1b96b5446300ea8d5d41bd (diff)
downloadgcc-5db3af13b55055c7a774d2ec50265477b9fef50f.tar.gz
(CONST_SECTION_ASM_OP): Add .align 1
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13309 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/dgux.h')
-rw-r--r--gcc/config/i386/dgux.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/i386/dgux.h b/gcc/config/i386/dgux.h
index 92ba17617e0..469ce14ddc8 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"