| 670 | |
| 671 | |
| 672 | void luaK_int (FuncState *fs, int reg, lua_Integer i) { |
| 673 | if (fitsBx(i)) |
| 674 | codeAsBx(fs, OP_LOADI, reg, cast_int(i)); |
| 675 | else |
| 676 | luaK_codek(fs, reg, luaK_intK(fs, i)); |
| 677 | } |
| 678 | |
| 679 | |
| 680 | static void luaK_float (FuncState *fs, int reg, lua_Number f) { |
no test coverage detected