diff options
author | Jukka Ojanen <jukka.ojanen@linkotec.net> | 2015-03-11 18:28:38 +0200 |
---|---|---|
committer | Jukka Ojanen <jukka.ojanen@linkotec.net> | 2015-03-11 18:28:38 +0200 |
commit | c06f06846f178a8504d186864fc7e5be37cd2ed8 (patch) | |
tree | 991078ffacf3ed4e55b61d58a25651b131be29d0 | |
parent | c7f2b486a3e5a6b875c4703cedf3e3995f642491 (diff) | |
download | ffts-c06f06846f178a8504d186864fc7e5be37cd2ed8.zip ffts-c06f06846f178a8504d186864fc7e5be37cd2ed8.tar.gz |
Fix conflicting types for 'temp0'
-rw-r--r-- | src/ffts.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -329,12 +329,14 @@ static int ffts_generate_luts(ffts_plan_t *p, size_t N, size_t leaf_N, int sign) //w = FFTS_MALLOC(n/4 * sizeof(cdata_t), 32); float *fw = (float *)w; #ifdef HAVE_NEON + { VS temp0, temp1, temp2; for (j=0; j<n/4; j+=4) { temp0 = VLD2(fw0 + j*2); temp0.val[1] = VXOR(temp0.val[1], neg); STORESPR(fw + j*2, temp0); } + } #else for (j=0; j<n/4; j+=1) { fw[j*2] = fw0[j*2]; |