export const floatToIntBits64 = (x: number): [number, number] => (
    (F64[0] = x), IS_LE ? [I32[1], I32[0]] : [I32[0], I32[1]]
);