From 505bdbb9ef877b2a7d265322a902024d0d4481ec Mon Sep 17 00:00:00 2001 From: "Konstantinos A. Margaritis" Date: Sun, 8 Feb 2009 18:22:34 +0000 Subject: [PATCH] should be __powerpc__ instead of __ppc__ --- Eigen/src/Core/util/Macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h index fb0994c76..9d6696095 100644 --- a/Eigen/src/Core/util/Macros.h +++ b/Eigen/src/Core/util/Macros.h @@ -41,7 +41,7 @@ // because extra memory must be allocated for bookkeeping). // if the compiler is not GNUC, just cross fingers that the architecture isn't too exotic, because we don't want // to keep track of all the different preprocessor symbols for all compilers. -#if (!defined(__GNUC__)) || defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__ia64__) +#if (!defined(__GNUC__)) || defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__ia64__) #define EIGEN_ARCH_WANTS_ALIGNMENT 1 #else #ifdef EIGEN_VECTORIZE