mirror of https://github.com/rusefi/lua.git
invalid instructions "cannot" happen
This commit is contained in:
parent
afdb19ac82
commit
b7be05ad27
5
lvm.c
5
lvm.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lvm.c,v 2.110 2010/04/05 16:26:37 roberto Exp roberto $
|
** $Id: lvm.c,v 2.111 2010/04/13 20:48:12 roberto Exp roberto $
|
||||||
** Lua virtual machine
|
** Lua virtual machine
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -808,8 +808,7 @@ void luaV_execute (lua_State *L) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case OP_EXTRAARG: {
|
case OP_EXTRAARG: {
|
||||||
luaG_runerror(L, "bad opcode");
|
lua_assert(0);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue