summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgit <svn-admin@ruby-lang.org>2019-08-22 22:47:05 +0900
committergit <svn-admin@ruby-lang.org>2019-08-22 22:47:05 +0900
commitefc89703365fa787c012370c18803bae67924526 (patch)
tree1374e431fccbdb827221df1f522b3788ee733734
parenta4d389d8fe87b6af9e5fac0e430d56a4ee9b8470 (diff)
* expand tabs. [ci skip]
Tabs are expanded because previously the file did not have any tab indentation. Please update your editor config, and use misc/expand_tabs.rb in the pre-commit hook.
-rw-r--r--mjit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mjit.c b/mjit.c
index 88c0d836f0..26a2a4eb1a 100644
--- a/mjit.c
+++ b/mjit.c
@@ -122,7 +122,7 @@ mjit_update_references(const rb_iseq_t *iseq)
iseq->body->jit_unit->iseq = (rb_iseq_t *)rb_gc_location((VALUE)iseq->body->jit_unit->iseq);
// We need to invalidate JIT-ed code for the ISeq because it embeds pointer addresses.
// To efficiently do that, we use the same thing as TracePoint and thus everything is cancelled for now.
- // See mjit.h and tool/ruby_vm/views/_mjit_compile_insn.erb for how `mjit_call_p` is used.
+ // See mjit.h and tool/ruby_vm/views/_mjit_compile_insn.erb for how `mjit_call_p` is used.
mjit_call_p = false; // TODO: instead of cancelling all, invalidate only this one and recompile it with some threshold.
}