From 3cf2c2e4a111f621c3c23029a55edebf00bbe1b0 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 30 Jun 2022 10:38:48 -0700 Subject: 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. --- iseq.h | 1 - 1 file changed, 1 deletion(-) (limited to 'iseq.h') 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) -- cgit v1.2.1