From cbc96b705d1dc1c6aedba29ad6ce16d526e3b50e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 5 Jul 2004 14:50:12 +0000 Subject: patch for AIX (bug 983144) --- src/mesa/math/m_debug_util.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/mesa/math/m_debug_util.h') diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h index 9df84301f1..e169034453 100644 --- a/src/mesa/math/m_debug_util.h +++ b/src/mesa/math/m_debug_util.h @@ -265,11 +265,13 @@ enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 }; /* Ensure our arrays are correctly aligned. */ #if defined(__GNUC__) -# define ALIGN16 __attribute__ ((aligned (16))) +# define ALIGN16 type array __attribute__ ((aligned (16))) #elif defined(__MSC__) -# define ALIGN16 __declspec(align(16)) /* GH: Does this work? */ +# define ALIGN16 type array __declspec(align(16)) /* GH: Does this work? */ #elif defined(__WATCOMC__) # define ALIGN16 /* Watcom does not support this */ +#elif defined(__xlC__) +# define ALIGN16(type, array) type __align (16) array #else # warning "ALIGN16 will not 16-byte align!\n" # define ALIGN16 -- cgit v1.2.3