summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2021-11-04 13:05:41 -0700
committerGitHub <noreply@github.com>2021-11-04 16:05:41 -0400
commit2421527d6e4737c371bca0cf7e694f8a2a0f923d (patch)
tree90621ade7e47fab78ce7c885d55aed1c99fdc434 /misc
parent85b4cf16e2cae0577633c1acb1dc7413d58fcb5a (diff)
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
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/yjit_asm_tests.c4
1 files changed, 0 insertions, 4 deletions
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();