aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-07-16 22:12:33 +0000
committerJeff Law <law@gcc.gnu.org>1999-07-16 16:12:33 -0600
commitcb16fe9f9bbf3605df9d0de1d0c6158e7a6c70a0 (patch)
treeddc5d15fc4e484c94687bec822c173e4119a4839 /gcc
parent30f08b398457458528aa6e67560a3512a51175da (diff)
downloadgcc-cb16fe9f9bbf3605df9d0de1d0c6158e7a6c70a0.zip
gcc-cb16fe9f9bbf3605df9d0de1d0c6158e7a6c70a0.tar.gz
gcc-cb16fe9f9bbf3605df9d0de1d0c6158e7a6c70a0.tar.bz2
* pa.h (POINTER_SIZE, PARM_BOUNDARY): Define in terms of BITS_PER_WORD.
From-SVN: r28131
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/config/pa/pa.h4
2 files changed, 4 insertions, 2 deletions
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 */