From b85b10c11f9846908a319e72c92e779e46c2217f Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 23 Aug 2018 04:12:14 +0000 Subject: check trace flags at loading [Bug #14702] * iseq.c (iseq_init_trace): at ISeq loading time, we need to check `ruby_vm_event_enabled_flags` to turn on trace instructions. Seprate this checking code from `finish_iseq_build()` and make new function. `iseq_ibf_load()` calls this funcation after loading. * test/ruby/test_iseq.rb: add a test for this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 2631a97aed..00b9e1d6ae 100644 --- a/compile.c +++ b/compile.c @@ -10010,6 +10010,8 @@ iseq_ibf_load(VALUE str) ibf_load_setup(load, loader_obj, str); iseq = ibf_load_iseq(load, 0); + iseq_init_trace(iseq); + RB_GC_GUARD(loader_obj); return iseq; } -- cgit v1.2.3