summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-27 07:31:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-27 07:31:50 +0000
commita92dd46dd529a0a48c37db08c3101e9677d0638d (patch)
tree6f861b8f456483b95007f0bc0102295893c2048a /gc.c
parent68bf801c39c439d274844b56e763f27634ee452f (diff)
* gc.c (HEAP_ALIGN, HEAP_ALIGN_MASK): DRY, let compiler calculate
from HEAP_ALIGN_LOG. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gc.c b/gc.c
index 4c906e7ab2..f52b5fc348 100644
--- a/gc.c
+++ b/gc.c
@@ -538,8 +538,8 @@ rb_objspace_free(rb_objspace_t *objspace)
/* tiny heap size: 16KB */
#define HEAP_ALIGN_LOG 14
-#define HEAP_ALIGN 0x4000
-#define HEAP_ALIGN_MASK 0x3fff
+#define HEAP_ALIGN (1UL << HEAP_ALIGN_LOG)
+#define HEAP_ALIGN_MASK (~(~0UL << HEAP_ALIGN_LOG))
#define REQUIRED_SIZE_BY_MALLOC (sizeof(size_t) * 5)
#define HEAP_SIZE (HEAP_ALIGN - REQUIRED_SIZE_BY_MALLOC)