Added bignum

This commit is contained in:
Justin Ethier 2017-06-07 17:57:35 +00:00
parent c32a1fea83
commit c1f883f19e

View file

@ -19,6 +19,7 @@ void print_stats(const char *type, size_t sz, size_t heap_sz)
type, sz, heap_sz, heap_sz - sz); type, sz, heap_sz, heap_sz - sz);
} }
void main() { 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("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("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 )) ); print_stats("closure0_type ", sizeof(closure0_type ), gc_heap_align(sizeof(closure0_type )) );