1
0
mirror of https://github.com/lua/lua.git synced 2025-02-04 06:13:04 +08:00
lua/testes
Roberto Ierusalimschy d12262068d Small optimizations in range checks
Checks of the form '1 <= x && x <= M' were rewritten in the form
'(unsigned)x - 1 < (unsigned)M', which is usually more efficient.
(Other similar checks have similar translations.) Although
some compilers do these optimizations, that does not happen
for all compilers or all cases.
2019-03-27 14:56:10 -03:00
..
2019-03-14 15:30:54 -03:00
2019-03-14 15:30:54 -03:00
2019-01-04 13:09:47 -02:00
2019-03-14 15:30:54 -03:00
2019-01-04 13:09:47 -02:00
2018-12-14 13:49:02 -02:00
2019-01-04 13:09:47 -02:00
2019-03-27 14:56:10 -03:00