| 657 | |
| 658 | |
| 659 | void luaK_int (FuncState *fs, int reg, lua_Integer i) { |
| 660 | if (fitsBx(i)) |
| 661 | luaK_codeAsBx(fs, OP_LOADI, reg, cast_int(i)); |
| 662 | else |
| 663 | luaK_codek(fs, reg, luaK_intK(fs, i)); |
| 664 | } |
| 665 | |
| 666 | |
| 667 | static void luaK_float (FuncState *fs, int reg, lua_Number f) { |
no test coverage detected