From faf7d7817456e3ae23eb882a99283581bae86112 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 19 Jul 1999 07:07:29 +0000 Subject: Install new alignment code to use MAXALIGN rather than DOUBLEALIGN where approproate. --- src/include/utils/array.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/utils/array.h') diff --git a/src/include/utils/array.h b/src/include/utils/array.h index f31c9d385d0..709d2a4722d 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -10,7 +10,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.20 1999/07/17 20:18:35 momjian Exp $ + * $Id: array.h,v 1.21 1999/07/19 07:07:29 momjian Exp $ * * NOTES * XXX the data array should be LONGALIGN'd -- notice that the array @@ -84,13 +84,13 @@ typedef struct */ #define ARR_DATA_PTR(a) \ (((char *) a) + \ - DOUBLEALIGN(sizeof(ArrayType) + 2 * (sizeof(int) * (a)->ndim))) + MAXALIGN(sizeof(ArrayType) + 2 * (sizeof(int) * (a)->ndim))) /* * The total array header size for an array of dimension n (in bytes). */ #define ARR_OVERHEAD(n) \ - (DOUBLEALIGN(sizeof(ArrayType) + 2 * (n) * sizeof(int))) + (MAXALIGN(sizeof(ArrayType) + 2 * (n) * sizeof(int))) /*------------------------------------------------------------------------ * Miscellaneous helper definitions and routines for arrayfuncs.c -- cgit v1.2.3