aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-03-06 12:11:08 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-03-06 12:11:08 -0500
commit7e2afe7e9599e7f77be3739175aaff848a3f9708 (patch)
tree1c536d5eaa688af766cccf98c55aa4168104305c /Eigen/src
parentbf0a21a6955c5789fc381c0c2a628838c354ce4b (diff)
remove the __ARM_NEON__ check there since Konstantinos said he removed it but apparently didn't commit :)
Diffstat (limited to 'Eigen/src')
-rw-r--r--Eigen/src/Core/util/Memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Memory.h b/Eigen/src/Core/util/Memory.h
index aa0073d44..1cd231329 100644
--- a/Eigen/src/Core/util/Memory.h
+++ b/Eigen/src/Core/util/Memory.h
@@ -424,7 +424,7 @@ inline static Integer ei_first_aligned(const Scalar* array, Integer size)
* ei_aligned_stack_free(data,float,array.size());
* \endcode
*/
-#if (defined __linux__) && !(defined __ARM_NEON__)
+#if (defined __linux__)
#define ei_aligned_stack_alloc(SIZE) (SIZE<=EIGEN_STACK_ALLOCATION_LIMIT) \
? alloca(SIZE) \
: ei_aligned_malloc(SIZE)