aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Memory.h
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-07-13 11:24:07 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-07-13 11:24:07 -0700
commit4a3952fd55a213baefeeebcae50366226952acce (patch)
tree04843f4b688d5a740bb994c8a09ee316465a7781 /Eigen/src/Core/util/Memory.h
parent02a9443db9b11ea959a0f65005506e21404ef933 (diff)
Relax the condition to not only work on Android.
Diffstat (limited to 'Eigen/src/Core/util/Memory.h')
-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 1805041c7..956f64d1d 100644
--- a/Eigen/src/Core/util/Memory.h
+++ b/Eigen/src/Core/util/Memory.h
@@ -593,7 +593,7 @@ template<typename T> struct smart_memmove_helper<T,false> {
// the compiler still emits bad code because stack allocation checks use "<=".
// TODO: Eliminate after https://bugs.llvm.org/show_bug.cgi?id=23772
// is fixed.
-#if defined(__clang__) && defined(__ANDROID__) && defined(__thumb__)
+#if defined(__clang__) && defined(__thumb__)
#undef EIGEN_ALLOCA
#endif