Revert changes to lvmexecute.cpp and ldo.cpp

This commit is contained in:
Jay Kruer 2022-06-16 14:22:01 -07:00
parent 0ae4231f87
commit 110377a3db
2 changed files with 0 additions and 5 deletions

View file

@ -290,9 +290,6 @@ static void resume_continue(lua_State* L)
Closure* cl = curr_func(L);
if (L->status == LUA_SIGINT)
break;
if (cl->isC)
{
LUAU_ASSERT(cl->c.cont);

View file

@ -13,7 +13,6 @@
#include "lbuiltins.h"
#include "lnumutils.h"
#include "lbytecode.h"
#include <csignal>
#include <string.h>
@ -127,7 +126,6 @@
*/
#if VM_USE_CGOTO
#define VM_CASE(op) CASE_##op:
#define VM_NEXT() goto*(SingleStep ? &&dispatch : kDispatchTable[LUAU_INSN_OP(*pc)])
#define VM_CONTINUE(op) goto* kDispatchTable[uint8_t(op)]
#else