Compare commits

..

No commits in common. "ab3a9b7584bcbaf107f2f543c47d660f036f7251" and "9162e84ae60937d3dbace2cadbda6021036ba3e8" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -906,7 +906,7 @@ pk_FrameResult pk_VM__run_top_frame(pk_VM* self) {
c11__unreachedable();
__ERROR:
pk_print_stack(self, frame, (Bytecode){0});
pk_print_stack(self, frame, (Bytecode){});
py_BaseException__set_lineno(&self->curr_exception, Frame__lineno(frame), frame->co);
__ERROR_RE_RAISE:
do {} while(0);

View File

@ -356,7 +356,7 @@ static bool
}
pk_FrameResult pk_VM__vectorcall(pk_VM* self, uint16_t argc, uint16_t kwargc, bool opcall) {
pk_print_stack(self, self->top_frame, (Bytecode){0});
pk_print_stack(self, self->top_frame, (Bytecode){});
py_Ref p1 = self->stack.sp - kwargc * 2;
py_Ref p0 = p1 - argc - 2;