diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-12-13 22:39:11 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-12-13 22:39:11 -0700 |
commit | a27d3fef5157ace221ec905cd13156ff7f4d00c8 (patch) | |
tree | 09d8d0455fe798edc0f364ab9d1e09e844120369 /gcc | |
parent | cf4627151e7501c1a21e7a1da8c20befc2fb1746 (diff) | |
download | gcc-a27d3fef5157ace221ec905cd13156ff7f4d00c8.zip gcc-a27d3fef5157ace221ec905cd13156ff7f4d00c8.tar.gz gcc-a27d3fef5157ace221ec905cd13156ff7f4d00c8.tar.bz2 |
* pa.h (MAX_OFILE_ALIGNMENT): Define appropriately for the PA.
From-SVN: r6231
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 90ba7f8..6307496 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)) |