From 3ba916584db5485c38ebf2390e8d22bc6d81bf8e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 4 Nov 2022 18:47:19 -0700 Subject: actually remove stage1 --- src/stage1/mem.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/stage1/mem.cpp (limited to 'src/stage1/mem.cpp') diff --git a/src/stage1/mem.cpp b/src/stage1/mem.cpp deleted file mode 100644 index 5931c38e6e..0000000000 --- a/src/stage1/mem.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2020 Andrew Kelley - * - * This file is part of zig, which is MIT licensed. - * See http://opensource.org/licenses/MIT - */ - -#include "mem.hpp" -#include "heap.hpp" - -namespace mem { - -void init() { - heap::bootstrap_allocator_state.init("heap::bootstrap_allocator"); - heap::c_allocator_state.init("heap::c_allocator"); -} - -void deinit() { - heap::c_allocator_state.deinit(); - heap::bootstrap_allocator_state.deinit(); -} - -} // namespace mem -- cgit v1.2.3