remove the __ARM_NEON__ check there since Konstantinos said he removed it but apparently didn't commit :)

This commit is contained in:
Benoit Jacob 2010-03-06 12:11:08 -05:00
parent bf0a21a695
commit 7e2afe7e95

View File

@ -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)