From c1f883f19e7a9f166c484e22953068c27b3672a7 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 7 Jun 2017 17:57:35 +0000 Subject: [PATCH] Added bignum --- tests/debug/test-sizes.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/debug/test-sizes.c b/tests/debug/test-sizes.c index 23e4574b..5c9679c4 100644 --- a/tests/debug/test-sizes.c +++ b/tests/debug/test-sizes.c @@ -19,6 +19,7 @@ void print_stats(const char *type, size_t sz, size_t heap_sz) type, sz, heap_sz, heap_sz - sz); } void main() { + print_stats("bignum_type", sizeof(bignum_type), gc_heap_align(sizeof(bignum_type)) ); print_stats("bytevector_type", sizeof(bytevector_type), gc_heap_align(sizeof(bytevector_type)) ); print_stats("c_opaque_type ", sizeof(c_opaque_type ), gc_heap_align(sizeof(c_opaque_type )) ); print_stats("closure0_type ", sizeof(closure0_type ), gc_heap_align(sizeof(closure0_type )) );