| 665 | |
| 666 | |
| 667 | static void luaK_float (FuncState *fs, int reg, lua_Number f) { |
| 668 | lua_Integer fi; |
| 669 | if (luaV_flttointeger(f, &fi, F2Ieq) && fitsBx(fi)) |
| 670 | luaK_codeAsBx(fs, OP_LOADF, reg, cast_int(fi)); |
| 671 | else |
| 672 | luaK_codek(fs, reg, luaK_numberK(fs, f)); |
| 673 | } |
| 674 | |
| 675 | |
| 676 | /* |
no test coverage detected