** Check whether 'i' can be stored in an 'sBx' operand. */
| 665 | ** Check whether 'i' can be stored in an 'sBx' operand. |
| 666 | */ |
| 667 | static int fitsBx (lua_Integer i) { |
| 668 | return (-OFFSET_sBx <= i && i <= MAXARG_Bx - OFFSET_sBx); |
| 669 | } |
| 670 | |
| 671 | |
| 672 | void luaK_int (FuncState *fs, int reg, lua_Integer i) { |
no outgoing calls
no test coverage detected