Minor changes

Co-authored-by: ValterMiari <ValterMiari@users.noreply.github.com>
This commit is contained in:
Victor Olin 2023-03-21 14:31:40 +01:00
parent edeff09e86
commit 8081bc5d67
11 changed files with 39 additions and 81 deletions

View file

@ -68,6 +68,7 @@ void test_some_types() {
int main() {
GC::Heap::init();
GC::Heap *gc = GC::Heap::debug_the();
gc->set_profiler(true);
gc->check_init();
auto stack_start = reinterpret_cast<uintptr_t *>(__builtin_frame_address(0));
std::cout << "Stack start from main:\t" << stack_start << std::endl;
@ -96,5 +97,7 @@ int main() {
gc->collect(GC::COLLECT_ALL);
gc->print_contents();
gc->dispose();
return 0;
}