From 729363114f0c7ea8ff3f8ddd8f6a83335b0f3909 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Thu, 27 Mar 2014 11:20:41 -0700 Subject: Fixed compilation error when FMA instructions are enabled. --- Eigen/src/Core/products/GeneralBlockPanelKernel.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h index 897b6a914..cd89aed1f 100644 --- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h +++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h @@ -521,12 +521,7 @@ public: EIGEN_STRONG_INLINE void madd_impl(const LhsPacket& a, const RhsPacket& b, AccPacket& c, RhsPacket& tmp, const true_type&) const { -#ifdef EIGEN_VECTORIZE_FMA - EIGEN_UNUSED_VARIABLE(tmp); - c = pmadd(a,b,c); -#else tmp = b; tmp.v = pmul(a,tmp.v); c = padd(c,tmp); -#endif } EIGEN_STRONG_INLINE void madd_impl(const LhsScalar& a, const RhsScalar& b, ResScalar& c, RhsScalar& /*tmp*/, const false_type&) const -- cgit v1.2.3