From f16baa9919e28a57363e974e4adfff6c7dce9e74 Mon Sep 17 00:00:00 2001 From: Jukka Ojanen Date: Sat, 6 Dec 2014 16:33:46 +0200 Subject: Definitions HAVE_NEON and HAVE_SSE cannot coexist --- src/ffts_real.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/ffts_real.c') diff --git a/src/ffts_real.c b/src/ffts_real.c index c2f03b7..12c02b9 100644 --- a/src/ffts_real.c +++ b/src/ffts_real.c @@ -36,9 +36,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifdef HAVE_NEON #include -#endif - -#ifdef HAVE_SSE +#elif HAVE_SSE #include #endif @@ -132,10 +130,6 @@ static void ffts_execute_1d_real(ffts_plan_t *p, const void *vin, void *vout) for (i = 0; i < N/2; i++) { out[2*i + 0] = buf[2*i + 0] * A[2*i] - buf[2*i + 1] * A[2*i + 1] + buf[N - 2*i] * B[2*i + 0] + buf[N - 2*i + 1] * B[2*i + 1]; out[2*i + 1] = buf[2*i + 1] * A[2*i] + buf[2*i + 0] * A[2*i + 1] + buf[N - 2*i] * B[2*i + 1] - buf[N - 2*i + 1] * B[2*i + 0]; - - /* out[2*N-2*i+0] = out[2*i+0]; - out[2*N-2*i+1] = -out[2*i+1]; - */ } #endif -- cgit v1.1