MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / isCint

Function isCint

lib/lua/src/lcode.c:1238–1240  ·  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

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

Callers 1

luaK_indexedFunction · 0.85

Calls 1

isKintFunction · 0.85

Tested by

no test coverage detected