Browse Source

Memory alignment is needed on macOS after all

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.11
falkTX 2 years ago
parent
commit
e22d492ea1
3 changed files with 1 additions and 9 deletions
  1. +1
    -1
      dpf
  2. +0
    -4
      include/engine/Port.hpp
  3. +0
    -4
      include/simd/Vector.hpp

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit cfbc53bf939794fe99c57a4a8e000ec360e14262
Subproject commit 2f9564a28e6e1b69f7e28b5e80ee0096fd283233

+ 0
- 4
include/engine/Port.hpp View File

@@ -33,11 +33,7 @@
#include <list> #include <list>


/** NOTE alignas is required in some systems in order to allow SSE usage. */ /** NOTE alignas is required in some systems in order to allow SSE usage. */
#ifndef ARCH_MAC
#define SIMD_ALIGN alignas(32) #define SIMD_ALIGN alignas(32)
#else
#define SIMD_ALIGN
#endif




namespace rack { namespace rack {


+ 0
- 4
include/simd/Vector.hpp View File

@@ -31,11 +31,7 @@
#include <pmmintrin.h> #include <pmmintrin.h>


/** NOTE alignas is required in some systems in order to allow SSE usage. */ /** NOTE alignas is required in some systems in order to allow SSE usage. */
#ifndef ARCH_MAC
#define SIMD_ALIGN alignas(32) #define SIMD_ALIGN alignas(32)
#else
#define SIMD_ALIGN
#endif




namespace rack { namespace rack {


Loading…
Cancel
Save