From: Neal Norwitz Date: Fri, 14 Apr 2006 03:53:34 +0000 (+0000) Subject: ALIGNMENT_SHIFT is not used X-Git-Tag: v2.5a2~251 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c0dc84398f4966ce368ac9606444437b6d1c1f0;p=thirdparty%2FPython%2Fcpython.git ALIGNMENT_SHIFT is not used --- diff --git a/Python/pyarena.c b/Python/pyarena.c index c5491e954a8e..24a737430090 100644 --- a/Python/pyarena.c +++ b/Python/pyarena.c @@ -13,7 +13,6 @@ #define DEFAULT_BLOCK_SIZE 8192 #define ALIGNMENT 8 -#define ALIGNMENT_SHIFT 3 #define ALIGNMENT_MASK (ALIGNMENT - 1) #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK)