** Check whether 'i' can be stored in an 'sC' operand. Equivalent to ** (0 <= int2sC(i) && int2sC(i) <= MAXARG_C) but without risk of ** overflows in the hidden addition inside 'int2sC'. */
| 644 | ** overflows in the hidden addition inside 'int2sC'. |
| 645 | */ |
| 646 | static int fitsC (lua_Integer i) { |
| 647 | return (l_castS2U(i) + OFFSET_sC <= cast_uint(MAXARG_C)); |
| 648 | } |
| 649 | |
| 650 | |
| 651 | /* |
no outgoing calls
no test coverage detected