MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / isCint

Function isCint

third-party/lua-5.4.6/src/lcode.c:1239–1241  ·  view source on GitHub ↗

** Check whether expression 'e' is a literal integer in ** proper range to fit in register C */

Source from the content-addressed store, hash-verified

1237** proper range to fit in register C
1238*/
1239static int isCint (expdesc *e) {
1240 return isKint(e) && (l_castS2U(e->u.ival) <= l_castS2U(MAXARG_C));
1241}
1242
1243
1244/*

Callers 1

luaK_indexedFunction · 0.70

Calls 1

isKintFunction · 0.70

Tested by

no test coverage detected