From 57d34f92e8929f3f27a06b1bcb8e88c25eb94dba Mon Sep 17 00:00:00 2001 From: tv Date: Fri, 16 Oct 1998 20:07:15 +0000 Subject: [PATCH] Set MAX_OFILE_ALIGNMENT to 32 as suggested by in PR port-m68k/6308. Since m68k's can access doubles fine on a 32-bit boundary, this does not need to be 64. --- gnu/dist/gcc/config/m68k/netbsd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/dist/gcc/config/m68k/netbsd.h b/gnu/dist/gcc/config/m68k/netbsd.h index 896ffee2fcf8..52154e2d7844 100644 --- a/gnu/dist/gcc/config/m68k/netbsd.h +++ b/gnu/dist/gcc/config/m68k/netbsd.h @@ -61,3 +61,5 @@ and initialization stuff better. */ #define DWARF2_UNWIND_INFO 0 +/* NetBSD a.out allows more than 16-bit alignment of elements and data. */ +#define MAX_OFILE_ALIGNMENT 32