summaryrefslogtreecommitdiff
path: root/iseq.h
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2022-06-30 10:38:48 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2022-07-07 11:56:25 -0700
commit3cf2c2e4a111f621c3c23029a55edebf00bbe1b0 (patch)
treed1de5c5d95fe2cc921594825a5d4c91158fd1100 /iseq.h
parent621e5c568af8881c58eb3c271e01fba5fe76a6a3 (diff)
downloadruby-3cf2c2e4a111f621c3c23029a55edebf00bbe1b0.tar.gz
Remove ISEQ_MARKABLE_ISEQ flag
We don't need this flag anymore. We have all the info we need via the bitmap and the is_entries list.
Diffstat (limited to 'iseq.h')
-rw-r--r--iseq.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/iseq.h b/iseq.h
index 46a8b1b010..1ca77a34d9 100644
--- a/iseq.h
+++ b/iseq.h
@@ -90,7 +90,6 @@ ISEQ_ORIGINAL_ISEQ_ALLOC(const rb_iseq_t *iseq, long size)
#define ISEQ_NOT_LOADED_YET IMEMO_FL_USER1
#define ISEQ_USE_COMPILE_DATA IMEMO_FL_USER2
#define ISEQ_TRANSLATED IMEMO_FL_USER3
-#define ISEQ_MARKABLE_ISEQ IMEMO_FL_USER4
#define ISEQ_EXECUTABLE_P(iseq) (FL_TEST_RAW(((VALUE)iseq), ISEQ_NOT_LOADED_YET | ISEQ_USE_COMPILE_DATA) == 0)