From 2421527d6e4737c371bca0cf7e694f8a2a0f923d Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Thu, 4 Nov 2021 13:05:41 -0700 Subject: YJIT code pages refactoring for code GC (#5073) * New code page allocation logic * Fix leaked globals * Fix leaked symbols, yjit asm tests * Make COUNTED_EXIT take a jit argument, so we can eliminate global ocb * Remove extra whitespace * Change block start_pos/end_pos to be pointers instead of uint32_t * Change branch end_pos and start_pos to end_addr, start_addr --- misc/yjit_asm_tests.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'misc') diff --git a/misc/yjit_asm_tests.c b/misc/yjit_asm_tests.c index 0bd11e4752..5708d3abad 100644 --- a/misc/yjit_asm_tests.c +++ b/misc/yjit_asm_tests.c @@ -426,10 +426,6 @@ void run_runtime_tests(void) int main(int argc, char** argv) { - // suppress -Wunused-function - (void)alloc_code_page; - (void)free_code_page; - run_assembler_tests(); run_runtime_tests(); -- cgit v1.2.1