From a659b5dbb28bf0d210133f7abd9c74199efafcd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20S=C3=A1nchez?= Date: Tue, 14 Feb 2023 16:52:07 +0000 Subject: [PATCH] Fix NEON make_packet2f. (cherry picked from commit 2dfbf1b251e7a32c140f36fc865b154b8a725bdd) --- Eigen/src/Core/arch/NEON/PacketMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/arch/NEON/PacketMath.h b/Eigen/src/Core/arch/NEON/PacketMath.h index 6c2dbe458..dd1234b9f 100644 --- a/Eigen/src/Core/arch/NEON/PacketMath.h +++ b/Eigen/src/Core/arch/NEON/PacketMath.h @@ -89,7 +89,7 @@ typedef int64x2_t Packet2l; typedef uint64x2_t Packet2ul; EIGEN_ALWAYS_INLINE Packet4f make_packet4f(float a, float b, float c, float d) { return {a, b, c, d}; } -EIGEN_ALWAYS_INLINE Packet4f make_packet2f(float a, float b) { return {a, b}; } +EIGEN_ALWAYS_INLINE Packet2f make_packet2f(float a, float b) { return {a, b}; } #endif // EIGEN_COMP_MSVC_STRICT