This commit is contained in:
Irmen de Jong
2023-03-04 14:14:01 +01:00
parent b3b380964c
commit fd269453a4
7 changed files with 20 additions and 11 deletions

View File

@ -3,6 +3,16 @@ TODO
For next minor release
^^^^^^^^^^^^^^^^^^^^^^
- fix compiler crash on Virtual Textelite example
- add optimizations for integer X <= Y-1 ---> X<Y , X >= Y+1 ---> X>Y
- add optimizations for integer:
X >= 1 => X > 0 (signed and unsigned)
X < 1 => X <= 0 (signed) or X==0 (unsigned)
X <= -1 => X >= 0 (signed only)
X > -1 => X >= 0 (signed only)
- TestSymbolTable: add some more tests
...