summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ffts.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ffts.h b/src/ffts.h
index 93d61ca..57d1996 100644
--- a/src/ffts.h
+++ b/src/ffts.h
@@ -62,8 +62,13 @@ typedef struct _ffts_plan_t ffts_plan_t;
struct _ffts_plan_t {
ptrdiff_t *offsets;
- void *ws;
+#ifdef DYNAMIC_DISABLED
+ void *ws;
void *oe_ws, *eo_ws, *ee_ws;
+#else
+ void __attribute__((aligned(32))) *ws;
+ void __attribute__((aligned(32))) *oe_ws, *eo_ws, *ee_ws;
+#endif
ptrdiff_t *is;
size_t *ws_is;
size_t i0, i1, n_luts;
OpenPOWER on IntegriCloud