From 15269b826607ee71e8d11646eb83d167e76b6f5d Mon Sep 17 00:00:00 2001 From: law Date: Fri, 16 Jul 1999 22:12:33 +0000 Subject: [PATCH] * pa.h (POINTER_SIZE, PARM_BOUNDARY): Define in terms of BITS_PER_WORD. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28131 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 2 ++ gcc/config/pa/pa.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e7f5b675847..e269953ba25 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,6 @@ Fri Jul 16 13:48:09 1999 Jeffrey A Law (law@cygnus.com) + + * pa.h (POINTER_SIZE, PARM_BOUNDARY): Define in terms of BITS_PER_WORD. * configure.in (hppa*-*-hpux11*): Use symbolic MASK_PA_11 instead of "1". diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index fec302258d8..77c1345a5d4 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -348,10 +348,10 @@ int lhs_lshift_cint_operand (); /* Width in bits of a pointer. See also the macro `Pmode' defined below. */ -#define POINTER_SIZE 32 +#define POINTER_SIZE BITS_PER_WORD /* Allocation boundary (in *bits*) for storing arguments in argument list. */ -#define PARM_BOUNDARY 32 +#define PARM_BOUNDARY BITS_PER_WORD /* Largest alignment required for any stack parameter, in bits. Don't define this if it is equal to PARM_BOUNDARY */ -- 2.11.4.GIT