FFTS Windows build fixes

This commit is contained in:
Kearwood Gilbert
2017-06-11 19:06:35 -07:00
parent 7c09f57eb9
commit bef32ab528
6 changed files with 26 additions and 7 deletions

View File

@@ -78,7 +78,7 @@
const data_t *din = (const data_t *)in;
data_t *dout = (data_t *)out;
V r0_1, r2_3, r4_5, r6_7;
float *LUT8 = p->ws + p->ws_is[0];
float *LUT8 = (float *)((size_t *)p->ws + p->ws_is[0]);
L_4_2(0, din, din+8, din+4, din+12, &r0_1, &r2_3, &r4_5, &r6_7);
K_N(0, VLD(LUT8), VLD(LUT8+4), &r0_1, &r2_3, &r4_5, &r6_7);
@@ -90,7 +90,7 @@
const data_t *din = (const data_t *)in;
data_t *dout = (data_t *)out;
V r0_1, r2_3, r4_5, r6_7;
float *LUT8 = p->ws + p->ws_is[0];
float *LUT8 = (float *)((size_t *)p->ws + p->ws_is[0]);
L_4_2(1, din, din+8, din+4, din+12, &r0_1, &r2_3, &r4_5, &r6_7);
K_N(1, VLD(LUT8), VLD(LUT8+4), &r0_1, &r2_3, &r4_5, &r6_7);