diff options
author | Takashi Kokubun <[email protected]> | 2020-11-22 07:10:44 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-22 07:10:44 -0800 |
commit | fa1250a506e9b6a1bcbf664f6b7b9c06e045d9b9 (patch) | |
tree | 794ba06e9a6ddee9d7cf07e2759d189684657c33 /mjit.c | |
parent | 175952bf0779f236be643880f8a04b9d46dcd083 (diff) |
Stop leaving .c files for JIT compaction in /tmp (#3802)
* Re-generate C files for JIT compaction every time
* Refactor in_jit return logic
* Just write code in a single file
* Add a TODO comment [ci skip]
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'mjit.c')
-rw-r--r-- | mjit.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -887,10 +887,6 @@ skip_cleaning_object_files(struct rb_mjit_unit_list *list) // No mutex for list, assuming MJIT worker does not exist yet since it's immediately after fork. list_for_each_safe(&list->head, unit, next, unode) { -#if USE_JIT_COMPACTION - if (unit->c_file) unit->c_file_inherited_p = true; -#endif - #if defined(_WIN32) // mswin doesn't reach here either. This is for MinGW. if (unit->so_file) unit->so_file = NULL; #endif |