lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 1 - binary ops (bit32) won't work (well they give results, but illogical ones). bit32 ops demand IEE representation for LUA_NUMBER (which is not the default for z/OS) :    should be specified in bit32 module documentation.

The binary ops does not demand IEEE representation for LUA_NUMBER. It
should work with any system. Lua only assumes IEEE representation for
some optimizations, which should only be used in specific platforms.
If bit32 is not working, it seems there is some problem with the tests
(#ifdefs) that control those optimizations.

-- Roberto