From a27d3fef5157ace221ec905cd13156ff7f4d00c8 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Mon, 13 Dec 1993 22:39:11 -0700 Subject: [PATCH] * pa.h (MAX_OFILE_ALIGNMENT): Define appropriately for the PA. From-SVN: r6231 --- gcc/config/pa/pa.h | 3 +++ 1 file changed, 3 insertions(+) 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)) -- 2.30.2