From: Jeff Law Date: Tue, 14 Dec 1993 05:39:11 +0000 (-0700) Subject: * pa.h (MAX_OFILE_ALIGNMENT): Define appropriately for the PA. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a27d3fef5157ace221ec905cd13156ff7f4d00c8;p=gcc.git * pa.h (MAX_OFILE_ALIGNMENT): Define appropriately for the PA. From-SVN: r6231 --- diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 90ba7f8bb03..63074962af3 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -212,6 +212,9 @@ extern int target_flags; /* No data type wants to be aligned rounder than this. */ #define BIGGEST_ALIGNMENT 64 +/* The .align directive in the HP assembler allows up to a 32 alignment. */ +#define MAX_OFILE_ALIGNMENT 32768 + /* Get around hp-ux assembler bug, and make strcpy of constants fast. */ #define CONSTANT_ALIGNMENT(CODE, TYPEALIGN) \ ((TYPEALIGN) < 32 ? 32 : (TYPEALIGN))