Moved vm_empty_cc to local in vm.c [Bug #16934]

Missed to commit a staged change.
This commit is contained in:
Nobuyoshi Nakada 2020-06-04 17:13:56 +09:00
parent 8b22fd27f1
commit a9e0046c26
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
1 changed files with 1 additions and 14 deletions

View File

@ -342,21 +342,8 @@ vm_cc_valid_p(const struct rb_callcache *cc, const rb_callable_method_entry_t *c
}
}
#ifndef MJIT_HEADER
extern const struct rb_callcache *vm_empty_cc;
#else
extern const struct rb_callcache *rb_vm_empty_cc(void);
#endif
static inline const struct rb_callcache *
vm_cc_empty(void)
{
#ifndef MJIT_HEADER
return vm_empty_cc;
#else
return rb_vm_empty_cc();
#endif
}
#define vm_cc_empty() rb_vm_empty_cc()
/* callcache: mutete */