This commit is contained in:
Irmen de Jong 2021-03-05 21:07:35 +01:00
parent 26502c949a
commit 6c66f86103

View File

@ -4,6 +4,7 @@ TODO
- optimize word multiplication if the constant multiplier is a multiple of 256
- move current rnd() to fastrnd() and add new rnd() based on the 16-bits rndw() for better results
- add more convenient number-to-string conversion routines to conv (and clean up the number printing routine in the blobs example?)
- optimize assigning array and struct variables (multi-element assings -> memcopy)
- hoist all variable declarations up to the subroutine scope *before* even the constant folding takes place (to avoid undefined symbol errors when referring to a variable from another nested scope in the subroutine)