summaryrefslogtreecommitdiffstats
path: root/src/ffts.c
diff options
context:
space:
mode:
authorJukka Ojanen <jukka.ojanen@linkotec.net>2015-03-11 18:33:14 +0200
committerJukka Ojanen <jukka.ojanen@linkotec.net>2015-03-11 18:33:14 +0200
commit72fc3742112c384a2af02d0b51c98cedccc7165f (patch)
treee83f69f2d05f80ff47ebb4b678ba65d080f2c9c0 /src/ffts.c
parent889bfbc21b252c481fa77fc83c238ba9dc719ade (diff)
downloadffts-72fc3742112c384a2af02d0b51c98cedccc7165f.zip
ffts-72fc3742112c384a2af02d0b51c98cedccc7165f.tar.gz
Fix conflicting types
Diffstat (limited to 'src/ffts.c')
-rw-r--r--src/ffts.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ffts.c b/src/ffts.c
index 41c0b48..4474a9f 100644
--- a/src/ffts.c
+++ b/src/ffts.c
@@ -385,6 +385,7 @@ static int ffts_generate_luts(ffts_plan_t *p, size_t N, size_t leaf_N, int sign)
#if defined(__arm__) && !defined(DYNAMIC_DISABLED)
#ifdef HAVE_NEON
+ {
VS temp0, temp1, temp2;
for (j = 0; j < n/8; j += 4) {
temp0 = VLD2(fw0 + j*2);
@@ -397,6 +398,7 @@ static int ffts_generate_luts(ffts_plan_t *p, size_t N, size_t leaf_N, int sign)
temp2.val[1] = VXOR(temp2.val[1], neg);
STORESPR(fw + j*2*3 + 16, temp2);
}
+ }
#else
for (j = 0; j < n/8; j += 1) {
fw[j*6] = fw0[j*2];
OpenPOWER on IntegriCloud