aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_sse3.c
diff options
context:
space:
mode:
authorrdb <[email protected]>2016-05-03 05:38:36 -0400
committerrdb <[email protected]>2016-05-03 05:38:36 -0400
commitb0224485aaecd0f98f61c0c77663ecba14302687 (patch)
tree8702eea48cf812e8a8d40c3ac0f74d353cabdac7 /Alc/mixer_sse3.c
parentd1e98c36d375433cb11a7a74ce20c968491773aa (diff)
Fix placement of alignas - fixes Mac OS X build
Diffstat (limited to 'Alc/mixer_sse3.c')
-rw-r--r--Alc/mixer_sse3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/mixer_sse3.c b/Alc/mixer_sse3.c
index 7085c537..1b946461 100644
--- a/Alc/mixer_sse3.c
+++ b/Alc/mixer_sse3.c
@@ -36,8 +36,8 @@ const ALfloat *Resample_fir4_32_SSE3(const BsincState* UNUSED(state), const ALfl
{
const __m128i increment4 = _mm_set1_epi32(increment*4);
const __m128i fracMask4 = _mm_set1_epi32(FRACTIONMASK);
- alignas(16) union { ALuint i[4]; float f[4]; } pos_;
- alignas(16) union { ALuint i[4]; float f[4]; } frac_;
+ union { alignas(16) ALuint i[4]; float f[4]; } pos_;
+ union { alignas(16) ALuint i[4]; float f[4]; } frac_;
__m128i frac4, pos4;
ALuint pos;
ALuint i;
@@ -100,8 +100,8 @@ const ALfloat *Resample_fir8_32_SSE3(const BsincState* UNUSED(state), const ALfl
{
const __m128i increment4 = _mm_set1_epi32(increment*4);
const __m128i fracMask4 = _mm_set1_epi32(FRACTIONMASK);
- alignas(16) union { ALuint i[4]; float f[4]; } pos_;
- alignas(16) union { ALuint i[4]; float f[4]; } frac_;
+ union { alignas(16) ALuint i[4]; float f[4]; } pos_;
+ union { alignas(16) ALuint i[4]; float f[4]; } frac_;
__m128i frac4, pos4;
ALuint pos;
ALuint i, j;