зеркало из https://github.com/github/ruby.git
fix conditon of vm_cc_invalidated_p()
vm_cc_invalidated_p() returns false when the cme is *NOT* invalidated.
This commit is contained in:
Родитель
4886535ab2
Коммит
a7d933e502
|
@ -360,7 +360,7 @@ vm_cc_markable(const struct rb_callcache *cc)
|
|||
static inline bool
|
||||
vm_cc_invalidated_p(const struct rb_callcache *cc)
|
||||
{
|
||||
if (cc->klass && METHOD_ENTRY_INVALIDATED(vm_cc_cme(cc))) {
|
||||
if (cc->klass && !METHOD_ENTRY_INVALIDATED(vm_cc_cme(cc))) {
|
||||
return false;
|
||||
}
|
||||
else {
|
||||
|
|
Загрузка…
Ссылка в новой задаче