summaryrefslogtreecommitdiffstats
path: root/src/ffts.c
diff options
context:
space:
mode:
authorJukka Ojanen <jukka.ojanen@linkotec.net>2015-03-13 11:30:20 +0200
committerJukka Ojanen <jukka.ojanen@linkotec.net>2015-03-13 11:31:37 +0200
commit54467a779f68aa24b8bab1c3b04025391d173f1e (patch)
treeec8e368e09d4be68f5c022a38af2266be4c89b2d /src/ffts.c
parent13a81490439e7ce823fea11fcbd09cfa7286671a (diff)
downloadffts-54467a779f68aa24b8bab1c3b04025391d173f1e.zip
ffts-54467a779f68aa24b8bab1c3b04025391d173f1e.tar.gz
One more macro fix
Diffstat (limited to 'src/ffts.c')
-rw-r--r--src/ffts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ffts.c b/src/ffts.c
index 5774a56..56325cc 100644
--- a/src/ffts.c
+++ b/src/ffts.c
@@ -310,7 +310,7 @@ static int ffts_generate_luts(ffts_plan_t *p, size_t N, size_t leaf_N, int sign)
V4SF temp0, temp1, temp2;
for (j=0; j<n/4; j+=2) {
// #ifdef HAVE_NEON
- temp0 = VLD(fw0 + j*2);
+ temp0 = V4SF_LD(fw0 + j*2);
V4SF re, im;
re = V4SF_DUPLICATE_RE(temp0);
im = V4SF_DUPLICATE_IM(temp0);
@@ -390,7 +390,7 @@ static int ffts_generate_luts(ffts_plan_t *p, size_t N, size_t leaf_N, int sign)
for (j = 0; j < n/8; j += 4) {
temp0 = V4SF2_LD(fw0 + j*2);
temp0.val[1] = V4SF_XOR(temp0.val[1], neg);
- V4SF_STORE_SPR(fw + j*2*3, temp0);
+ V4SF2_STORE_SPR(fw + j*2*3, temp0);
temp1 = V4SF2_LD(fw1 + j*2);
temp1.val[1] = V4SF_XOR(temp1.val[1], neg);
V4SF2_STORE_SPR(fw + j*2*3 + 8, temp1);
OpenPOWER on IntegriCloud