lua-users home
lua-l archive

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


On Mon, Dec 7, 2020 at 1:16 PM Ranier Vilela <ranier.vf@gmail.com> wrote:

> It seems to me that someone forgot to apply the same optimization for "unsigned int", into gcc code.

The same optimization does not exist for unsigned int, because it is
only made possible by the undefined behavior of the signed int
overflow.

Cheers,
V.