mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Revert changes to lvmexecute.cpp and ldo.cpp
This commit is contained in:
parent
0ae4231f87
commit
110377a3db
2 changed files with 0 additions and 5 deletions
|
@ -290,9 +290,6 @@ static void resume_continue(lua_State* L)
|
||||||
|
|
||||||
Closure* cl = curr_func(L);
|
Closure* cl = curr_func(L);
|
||||||
|
|
||||||
if (L->status == LUA_SIGINT)
|
|
||||||
break;
|
|
||||||
|
|
||||||
if (cl->isC)
|
if (cl->isC)
|
||||||
{
|
{
|
||||||
LUAU_ASSERT(cl->c.cont);
|
LUAU_ASSERT(cl->c.cont);
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
#include "lbuiltins.h"
|
#include "lbuiltins.h"
|
||||||
#include "lnumutils.h"
|
#include "lnumutils.h"
|
||||||
#include "lbytecode.h"
|
#include "lbytecode.h"
|
||||||
#include <csignal>
|
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -127,7 +126,6 @@
|
||||||
*/
|
*/
|
||||||
#if VM_USE_CGOTO
|
#if VM_USE_CGOTO
|
||||||
#define VM_CASE(op) CASE_##op:
|
#define VM_CASE(op) CASE_##op:
|
||||||
|
|
||||||
#define VM_NEXT() goto*(SingleStep ? &&dispatch : kDispatchTable[LUAU_INSN_OP(*pc)])
|
#define VM_NEXT() goto*(SingleStep ? &&dispatch : kDispatchTable[LUAU_INSN_OP(*pc)])
|
||||||
#define VM_CONTINUE(op) goto* kDispatchTable[uint8_t(op)]
|
#define VM_CONTINUE(op) goto* kDispatchTable[uint8_t(op)]
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue