aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Macros.h
diff options
context:
space:
mode:
authorGravatar Konstantinos A. Margaritis <markos@codex.gr>2009-02-08 18:22:34 +0000
committerGravatar Konstantinos A. Margaritis <markos@codex.gr>2009-02-08 18:22:34 +0000
commit505bdbb9ef877b2a7d265322a902024d0d4481ec (patch)
tree4c29a54db166ea15c17c011b66eb1d7b38591a59 /Eigen/src/Core/util/Macros.h
parentd8b7283a984c3d0c134254c2285a75c0d2d7497e (diff)
should be __powerpc__ instead of __ppc__
Diffstat (limited to 'Eigen/src/Core/util/Macros.h')
-rw-r--r--Eigen/src/Core/util/Macros.h2
1 files changed, 1 insertions, 1 deletions
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