зеркало из https://github.com/github/ruby.git
insns.def: redundant call
* insns.def (leave): remove redundant function call. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
b55217c691
Коммит
db45ec9845
|
@ -1027,9 +1027,10 @@ leave
|
|||
(VALUE val)
|
||||
{
|
||||
if (OPT_CHECKED_RUN) {
|
||||
if (reg_cfp->sp != vm_base_ptr(reg_cfp)) {
|
||||
const VALUE *const bp = vm_base_ptr(reg_cfp);
|
||||
if (reg_cfp->sp != bp) {
|
||||
rb_bug("Stack consistency error (sp: %"PRIdPTRDIFF", bp: %"PRIdPTRDIFF")",
|
||||
VM_SP_CNT(th, reg_cfp->sp), VM_SP_CNT(th, vm_base_ptr(reg_cfp)));
|
||||
VM_SP_CNT(th, reg_cfp->sp), VM_SP_CNT(th, bp));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче