lua-users home
lua-l archive

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


> This is one reason why (IIRC) the C working group recently rejected making
> IEEE floating point mandatory. And it's also why they're still reticient to
> more strictly define integer representations and arithmetic behavior--you
> never know what advancements might come around the corner.

The C99 standard does not leave much room for new integer
representations, as it explicitly lists the allowed representations:
sign and magnitude, two's complement, and one's complement
(ISO/IEC 9899:1999 (E), 6.2.6.2: Integer types).

-- Roberto