+Sat May 29 19:08:10 1999 Philip Blundell <philb@gnu.org>
+
+ * config/arm/aout.h (ASM_OUTPUT_ALIGN): Only define if not already
+ defined.
+ * config/arm/elf.h (ASM_OUTPUT_ALIGN): Define.
+ (MAX_OFILE_ALIGNMENT): Define.
+
Fri May 28 21:40 1999 Robert Lipe <robertlipe@usa.net>
* fixincl.c: Replace local include scheme with #includes of
fprintf (STREAM, "\t.space\t%d\n", NBYTES)
/* Align output to a power of two. Horrible /bin/as. */
+#ifndef ASM_OUTPUT_ALIGN
#define ASM_OUTPUT_ALIGN(STREAM, POWER) \
do \
{ \
fprintf (STREAM, "\t.even\n"); \
else if (amount != 1) \
fprintf (STREAM, "\t.align\t%d\n", amount - 4); \
- } while (0)
+ } \
+ while (0)
+#endif
/* Output a common block */
#ifndef ASM_OUTPUT_COMMON
/* The ELF assembler handles GOT addressing differently to NetBSD. */
#define GOT_PCREL 0
+/* Biggest alignment supported by the object file format of this
+ machine. Use this macro to limit the alignment which can be
+ specified using the `__attribute__ ((aligned (N)))' construct. If
+ not defined, the default value is `BIGGEST_ALIGNMENT'. */
+#define MAX_OFILE_ALIGNMENT (32768*8)
+
+/* Align output to a power of two. */
+#define ASM_OUTPUT_ALIGN(STREAM, POWER) \
+ fprintf (STREAM, "\t.align\t%d\n", POWER)
+
#include "arm/aout.h"