diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-12-13 16:49:46 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-12-13 16:49:46 -0800 |
commit | 783904e414024691d47e76a22d8405ca85dd04f2 (patch) | |
tree | 92d692d7f6e86e5ff0f610043d7e162f1405e289 /core/mixer/mixer_neon.cpp | |
parent | 225d42538d2397e2698b9edb359c360dde3d00a8 (diff) |
Avoid compiling different sources for different targets
Simplifies configuration and fixes a potential problem with inline functions.
Inline functions that fail to inline will have a callable body generated. If
such a body is generated with the SSE4 source, for example, it can generate
SSE4 instructions. Calls for that function in other sources can then end up
calling the SSE4-generated body outside of any CPU capability check.
Diffstat (limited to 'core/mixer/mixer_neon.cpp')
-rw-r--r-- | core/mixer/mixer_neon.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/mixer/mixer_neon.cpp b/core/mixer/mixer_neon.cpp index 3c7ddd4e..cc6dd71d 100644 --- a/core/mixer/mixer_neon.cpp +++ b/core/mixer/mixer_neon.cpp @@ -16,6 +16,10 @@ struct BSincTag; struct FastBSincTag; +#if defined(__GNUC__) && !defined(__clang__) && !defined(__ARM_NEON) +#pragma GCC target("fpu=neon") +#endif + namespace { inline float32x4_t set_f4(float l0, float l1, float l2, float l3) |