diff options
author | Aaron Patterson <[email protected]> | 2021-07-15 14:30:43 -0700 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:38 -0400 |
commit | 41f405c486a01c1a16c3f102c11d41c8fbbafe60 (patch) | |
tree | 3bc1a173f6a634071bb62533d25d741d3b156d34 /vm_exec.h | |
parent | 84a1e04e5873e511c8454983c3c34c6494bc5491 (diff) |
Remove the scraper
Now that we're using the jit function entry point, we don't need the
scraper. Thank you for your service, scraper. ❤️
Diffstat (limited to 'vm_exec.h')
-rw-r--r-- | vm_exec.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ error ! RSTRING_PTR(rb_iseq_path(reg_cfp->iseq)), \ rb_iseq_line_no(reg_cfp->iseq, reg_pc - reg_cfp->iseq->body->iseq_encoded)); \ } \ - if (USE_INSNS_COUNTER && BIN(insn) != BIN(yjit_call_example_with_ec)) vm_insns_counter_count_insn(BIN(insn)); + if (USE_INSNS_COUNTER) vm_insns_counter_count_insn(BIN(insn)); #define INSN_DISPATCH_SIG(insn) |