Lay the groundwork for 64-bit AVX2 SIMD support
diff --git a/jmemmgr.c b/jmemmgr.c
index 9174ad3..7f6b149 100644
--- a/jmemmgr.c
+++ b/jmemmgr.c
@@ -85,7 +85,9 @@
 #ifndef WITH_SIMD
 #define ALIGN_SIZE  sizeof(double)
 #else
-#define ALIGN_SIZE  16 /* Most SIMD implementations require this */
+#define ALIGN_SIZE  32 /* Most of the SIMD instructions we support require
+                          16-byte (128-bit) alignment, but AVX2 requires
+                          32-byte alignment. */
 #endif
 #endif