From cb16fe9f9bbf3605df9d0de1d0c6158e7a6c70a0 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Fri, 16 Jul 1999 22:12:33 +0000 Subject: * pa.h (POINTER_SIZE, PARM_BOUNDARY): Define in terms of BITS_PER_WORD. From-SVN: r28131 --- gcc/ChangeLog | 2 ++ gcc/config/pa/pa.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e7f5b67..e269953 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 fec3022..77c1345 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 */ -- cgit v1.1