aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-03-27 11:20:41 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-03-27 11:20:41 -0700
commit729363114f0c7ea8ff3f8ddd8f6a83335b0f3909 (patch)
tree9555ae0e8d7b55f6d8d6139fb5009ca34313c61b
parent1697d7a179d580782a0b37bc078e2b71bd95a714 (diff)
Fixed compilation error when FMA instructions are enabled.
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h5
1 files changed, 0 insertions, 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