Get rid of USE_CACHE_ALIGNED. It has no function anymore.
diff --git a/Include/dictobject.h b/Include/dictobject.h
index 547430e..27ef90d 100644
--- a/Include/dictobject.h
+++ b/Include/dictobject.h
@@ -45,9 +45,6 @@
 	long me_hash;      /* cached hash code of me_key */
 	PyObject *me_key;
 	PyObject *me_value;
-#ifdef USE_CACHE_ALIGNED
-	long	aligner;
-#endif
 } PyDictEntry;
 
 /*