From e22d492ea1ca889300b5ba29cae818fbec50ac0c Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 25 Nov 2022 23:27:26 +0000 Subject: [PATCH] Memory alignment is needed on macOS after all Signed-off-by: falkTX --- dpf | 2 +- include/engine/Port.hpp | 4 ---- include/simd/Vector.hpp | 4 ---- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/dpf b/dpf index cfbc53b..2f9564a 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit cfbc53bf939794fe99c57a4a8e000ec360e14262 +Subproject commit 2f9564a28e6e1b69f7e28b5e80ee0096fd283233 diff --git a/include/engine/Port.hpp b/include/engine/Port.hpp index 12eb136..98a3a41 100644 --- a/include/engine/Port.hpp +++ b/include/engine/Port.hpp @@ -33,11 +33,7 @@ #include /** NOTE alignas is required in some systems in order to allow SSE usage. */ -#ifndef ARCH_MAC #define SIMD_ALIGN alignas(32) -#else -#define SIMD_ALIGN -#endif namespace rack { diff --git a/include/simd/Vector.hpp b/include/simd/Vector.hpp index 3ca26d5..520bfa0 100644 --- a/include/simd/Vector.hpp +++ b/include/simd/Vector.hpp @@ -31,11 +31,7 @@ #include /** NOTE alignas is required in some systems in order to allow SSE usage. */ -#ifndef ARCH_MAC #define SIMD_ALIGN alignas(32) -#else -#define SIMD_ALIGN -#endif namespace rack {