aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-11-27 23:45:00 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-11-27 23:45:00 +0100
commitb131a4db2439ea1ca4ba86cbc86aa962914915c5 (patch)
tree9252ae5948715f0afbd08a5faf072ded72013c14 /Eigen/Core
parenta1a5fbbd212fb962d2bcc1533ae09037ee4177a1 (diff)
bug #1631: fix compilation with ARM NEON and clang, and cleanup the weird pshiftright_and_cast and pcast_and_shiftleft functions.
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/Core b/Eigen/Core
index 61cc646aa..4bbde063a 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -163,11 +163,11 @@ using std::ptrdiff_t;
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/TypeCasting.h"
#include "src/Core/arch/SSE/Complex.h"
- #include "src/Core/arch/SSE/MathFunctions.h"
#include "src/Core/arch/AVX/PacketMath.h"
#include "src/Core/arch/AVX/TypeCasting.h"
- #include "src/Core/arch/AVX/MathFunctions.h"
#include "src/Core/arch/AVX/Complex.h"
+ #include "src/Core/arch/SSE/MathFunctions.h"
+ #include "src/Core/arch/AVX/MathFunctions.h"
#elif defined EIGEN_VECTORIZE_SSE
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/TypeCasting.h"