| 652 | |
| 653 | |
| 654 | void luaK_int (FuncState *fs, int reg, lua_Integer i) { |
| 655 | if (fitsBx(i)) |
| 656 | luaK_codeAsBx(fs, OP_LOADI, reg, cast_int(i)); |
| 657 | else |
| 658 | luaK_codek(fs, reg, luaK_intK(fs, i)); |
| 659 | } |
| 660 | |
| 661 | |
| 662 | static void luaK_float (FuncState *fs, int reg, lua_Number f) { |
no test coverage detected