mirror of
https://github.com/irmen/prog8.git
synced 2025-07-03 01:23:55 +00:00
todos
This commit is contained in:
@ -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
|
||||
|
||||
...
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user