Fix error: unused parameter 'tmp' [-Werror,-Wunused-parameter] on clang/32-bit arm

This commit is contained in:
Martin Burchell 2023-01-10 21:15:28 +00:00 committed by Rasmus Munk Larsen
parent f47472603b
commit c54785b071

View File

@ -26,7 +26,7 @@ struct gebp_traits <float,float,false,false,Architecture::NEON,GEBPPacketFull>
template <typename LaneIdType> template <typename LaneIdType>
EIGEN_STRONG_INLINE void madd(const Packet4f& a, const Packet4f& b, EIGEN_STRONG_INLINE void madd(const Packet4f& a, const Packet4f& b,
Packet4f& c, Packet4f& tmp, Packet4f& c, Packet4f&,
const LaneIdType&) const { const LaneIdType&) const {
acc(a, b, c); acc(a, b, c);
} }