diff options
author | Alan Wu <[email protected]> | 2020-10-01 15:16:23 -0400 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:24 -0400 |
commit | 1159034cae1b6cd96639247a2e4892b32aae25dc (patch) | |
tree | ebec00075e5fe4caed5ca4a25a80d0b6b2d46902 /vm_exec.h | |
parent | 851ea463512529390133e656540bb3e287ca6fdd (diff) |
Fix compilation for -DUSE_INSNS_COUNTER
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) vm_insns_counter_count_insn(BIN(insn)); + if (USE_INSNS_COUNTER && BIN(insn) != BIN(ujit_call_example)) vm_insns_counter_count_insn(BIN(insn)); #define INSN_DISPATCH_SIG(insn) |