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

Function isCint

third-party/lua-5.5.0/src/lcode.c:1282–1284  ·  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

1280** proper range to fit in register C
1281*/
1282static int isCint (expdesc *e) {
1283 return isKint(e) && (l_castS2U(e->u.ival) <= l_castS2U(MAXARG_C));
1284}
1285
1286
1287/*

Callers 1

luaK_indexedFunction · 0.70

Calls 1

isKintFunction · 0.70

Tested by

no test coverage detected