mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 07:17:37 +02:00
Added bignum
This commit is contained in:
parent
c32a1fea83
commit
c1f883f19e
1 changed files with 1 additions and 0 deletions
|
@ -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 )) );
|
||||||
|
|
Loading…
Add table
Reference in a new issue