From f95d92720298e65753dc72b4e6ee38f567dd3028 Mon Sep 17 00:00:00 2001 From: Ziemowit Laski Date: Sat, 8 May 2004 05:02:55 +0000 Subject: [PATCH] altivec.h (vector, [...]): Do not define as macros #ifdef __APPLE_ALTIVEC__. 2004-05-07 Ziemowit Laski * config/rs6000/altivec.h (vector, pixel, bool): Do not define as macros #ifdef __APPLE_ALTIVEC__. From-SVN: r81641 --- gcc/ChangeLog | 8 +++++++- gcc/config/rs6000/altivec.h | 7 +++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f50b1060ab8..0c3f1cdf1be 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,10 @@ -2004-05-07 Fariborz Jahanian +2004-05-07 Ziemowit Laski + + * config/rs6000/altivec.h (vector, pixel, bool): Do not + define as macros #ifdef __APPLE_ALTIVEC__. + +2004-05-07 Fariborz Jahanian + * config/rs6000/rs6000.c (rs6000_mixed_function_arg): Generate appropriate parallels for vector arguments passed to vararg functions. (function_arg): make the call diff --git a/gcc/config/rs6000/altivec.h b/gcc/config/rs6000/altivec.h index 44eae871e98..8e07778bb12 100644 --- a/gcc/config/rs6000/altivec.h +++ b/gcc/config/rs6000/altivec.h @@ -36,10 +36,17 @@ #error Use the "-maltivec" flag to enable PowerPC AltiVec support #endif +/* If __APPLE_ALTIVEC__ is defined, the compiler supports 'vector', + 'pixel' and 'bool' as context-sensitive AltiVec keywords (in + non-AltiVec contexts, they revert to their original meanings, + if any), so we do not need to define them as macros. */ + +#if !defined(__APPLE_ALTIVEC__) /* You are allowed to undef these for C++ compatibility. */ #define vector __vector #define pixel __pixel #define bool __bool +#endif /* Condition register codes for AltiVec predicates. */ -- 2.30.2