mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-24 23:13:42 +02:00
Added some #define protection to SseMathFuncs.cpp for PPC Mac builds etc.
This commit is contained in:
@@ -15,6 +15,9 @@
|
|||||||
|
|
||||||
*//****************************************************************/
|
*//****************************************************************/
|
||||||
|
|
||||||
|
#include "Experimental.h"
|
||||||
|
#ifdef EXPERIMENTAL_EQ_SSE_THREADED
|
||||||
|
|
||||||
#include "SseMathFuncs.h"
|
#include "SseMathFuncs.h"
|
||||||
|
|
||||||
|
|
||||||
@@ -695,4 +698,7 @@ void sincos_ps(v4sfu *xptr, v4sfu *sptr, v4sfu *cptr) {
|
|||||||
/* update the sign */
|
/* update the sign */
|
||||||
*s = _mm_xor_ps(xmm1, sign_bit_sin);
|
*s = _mm_xor_ps(xmm1, sign_bit_sin);
|
||||||
*c = _mm_xor_ps(xmm2, sign_bit_cos);
|
*c = _mm_xor_ps(xmm2, sign_bit_cos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user