summaryrefslogtreecommitdiff
path: root/ujit_core.h
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2021-03-04 12:05:18 -0500
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:30 -0400
commitabc016ad2c85a15ad6a512be57f47d893bc81e27 (patch)
tree81e5d7c6d0417204a71cb78cba1da8fdfd528682 /ujit_core.h
parent5c497dfd7f86c88c9730dda397fecb3aa943e84d (diff)
WIP refactor block lists to use darray
Diffstat (limited to 'ujit_core.h')
-rw-r--r--ujit_core.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/ujit_core.h b/ujit_core.h
index bfd44b145e..ac7d02ae12 100644
--- a/ujit_core.h
+++ b/ujit_core.h
@@ -121,12 +121,6 @@ typedef struct ujit_block_version
// Offsets for GC managed objects in the mainline code block
int32_array_t gc_object_offsets;
- // Next block version for this blockid (singly-linked list)
- struct ujit_block_version *next;
-
- // Offsets for GC managed objects in the mainline code block
- offset_array_t gc_object_offsets;
-
// GC managed objects that this block depend on
struct {
VALUE cc;