зеркало из https://github.com/github/ruby.git
If codeblock is NULL because YJIT is disabled, YJIT.runtime_stats should return Qnil
This commit is contained in:
Родитель
50029fb127
Коммит
dd23e4658b
|
@ -702,6 +702,11 @@ comments_for(rb_execution_context_t *ec, VALUE self, VALUE start_address, VALUE
|
|||
static VALUE
|
||||
get_yjit_stats(rb_execution_context_t *ec, VALUE self)
|
||||
{
|
||||
// Return Qnil if YJIT isn't enabled
|
||||
if (cb == NULL) {
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
VALUE hash = rb_hash_new();
|
||||
|
||||
RB_VM_LOCK_ENTER();
|
||||
|
|
Загрузка…
Ссылка в новой задаче