From d878cf22276239771cf315d437508d8b41471968 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Wed, 4 Jul 2012 11:28:59 +0300 Subject: [PATCH] fix typo --- Eigen/src/Core/arch/NEON/PacketMath.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Eigen/src/Core/arch/NEON/PacketMath.h b/Eigen/src/Core/arch/NEON/PacketMath.h index 90dd335a1..721d3fe6f 100644 --- a/Eigen/src/Core/arch/NEON/PacketMath.h +++ b/Eigen/src/Core/arch/NEON/PacketMath.h @@ -363,7 +363,6 @@ template<> EIGEN_STRONG_INLINE int predux_min(const Packet4i& a) a_hi = vget_high_s32(a); min = vpmin_s32(a_lo, a_hi); min = vpmin_s32(min, min); - vst1_s32(s, min); return vget_lane_s32(min, 0); } @@ -378,7 +377,7 @@ template<> EIGEN_STRONG_INLINE float predux_max(const Packet4f& a) max = vpmax_f32(a_lo, a_hi); max = vpmax_f32(max, max); - return vget_lane_s32(max, 0); + return vget_lane_f32(max, 0); } template<> EIGEN_STRONG_INLINE int predux_max(const Packet4i& a)