MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / isSCint

Function isSCint

3rd/lua-5.4.3/src/lcode.c:1228–1230  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1226** proper range to fit in register sC
1227*/
1228static int isSCint (expdesc *e) {
1229 return luaK_isKint(e) && fitsC(e->u.ival);
1230}
1231
1232
1233/*

Callers 2

codecommutativeFunction · 0.85
luaK_posfixFunction · 0.85

Calls 2

luaK_isKintFunction · 0.85
fitsCFunction · 0.85

Tested by

no test coverage detected