Commit 4566eb62 by Jeffrey A Law Committed by Jeff Law

* i386/next.h (ASM_OUTPUT_ALIGN): Use 0x90 for fill character.

From-SVN: r24285
parent 941c63ac
Sat Dec 12 23:39:10 1998 Jeffrey A Law (law@cygnus.com) Sat Dec 12 23:39:10 1998 Jeffrey A Law (law@cygnus.com)
* i386/next.h (ASM_OUTPUT_ALIGN): Use 0x90 for fill character.
* rtlanal.c (multiple_sets): New function. * rtlanal.c (multiple_sets): New function.
* rtl.h (multiple_sets): Declare it. * rtl.h (multiple_sets): Declare it.
* local-alloc.c (wipe_dead_reg): Use it. * local-alloc.c (wipe_dead_reg): Use it.
......
...@@ -224,3 +224,10 @@ Boston, MA 02111-1307, USA. */ ...@@ -224,3 +224,10 @@ Boston, MA 02111-1307, USA. */
== void_type_node))) ? (SIZE) : 0) == void_type_node))) ? (SIZE) : 0)
/* END Calling Convention CHANGES */ /* 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))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment