| 690 | |
| 691 | |
| 692 | void luaK_int (FuncState *fs, int reg, lua_Integer i) { |
| 693 | if (fitsBx(i)) |
| 694 | codeAsBx(fs, OP_LOADI, reg, cast_int(i)); |
| 695 | else |
| 696 | luaK_codek(fs, reg, luaK_intK(fs, i)); |
| 697 | } |
| 698 | |
| 699 | |
| 700 | static void luaK_float (FuncState *fs, int reg, lua_Number f) { |
no test coverage detected