summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-12-12 23:22:17 +0000
committerJeff Law <law@gcc.gnu.org>1998-12-12 16:22:17 -0700
commitde5387cf2164d39bad88338ce847b3b5ccfd3e64 (patch)
treeb54042df85ec31395d0d0146c5c5b3e7fe088168 /gcc
parent0e5432d553cb107dae6cfd345e9066898745833c (diff)
downloadgcc-de5387cf2164d39bad88338ce847b3b5ccfd3e64.tar.gz
* i386/next.h (ASM_OUTPUT_ALIGN): Use 0x90 for fill character.
From-SVN: r24286
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/config/i386/next.h7
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c94b3093b8e..1524c3f8033 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,7 @@
Sun Dec 13 00:09:47 1998 Jeffrey A Law (law@cygnus.com)
+ * i386/next.h (ASM_OUTPUT_ALIGN): Use 0x90 for fill character.
+
* h8300.c (h8300_encode_label): Use '&' for tiny data items.
* h8300.h (TINY_DATA_NAME_P): Likewise.
(STRIP_NAME_ENCODING): Handle '&'.
diff --git a/gcc/config/i386/next.h b/gcc/config/i386/next.h
index 8dd46f5cd41..65f74023999 100644
--- a/gcc/config/i386/next.h
+++ b/gcc/config/i386/next.h
@@ -224,3 +224,10 @@ Boston, MA 02111-1307, USA. */
== void_type_node))) ? (SIZE) : 0)
/* END Calling Convention CHANGES */
+
+/* NeXT still uses old binutils that don't insert nops by default
+ when the .align directive demands to insert extra space in the text
+ segment. */
+#undef ASM_OUTPUT_ALIGN
+#define ASM_OUTPUT_ALIGN(FILE,LOG) \
+ if ((LOG)!=0) fprintf ((FILE), "\t.align %d,0x90\n", (LOG))