fixup! Remove fixed argument of ecall(); ref #3855 #3856

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-11-22 12:20:56 +09:00
parent cb4b042777
commit fe3ac50845
+2 -2
View File
@@ -1843,7 +1843,7 @@ RETRY_TRY_BLOCK:
#define ecall_adjust() do {\
ptrdiff_t cioff = ci - mrb->c->cibase;\
ecall(mrb, --mrb->c->eidx);\
ecall(mrb);\
ci = mrb->c->cibase + cioff;\
} while (0)
@@ -2890,7 +2890,7 @@ RETRY_TRY_BLOCK:
int epos = mrb->c->ci->epos;
while (mrb->c->eidx > epos) {
ecall(mrb, --mrb->c->eidx);
ecall(mrb);
}
}
ERR_PC_CLR(mrb);