dbaumgarten / yodk

Development Kit for Starbase's ingame programming language YOLOL
MIT License
57 stars 16 forks source link

div/mul by 1 not optimized away #115

Closed lizelive closed 2 years ago

lizelive commented 2 years ago

for example math_mod(a, 1) a-a/1/1000*1000*1 instead of a-a/1000*1000

dbaumgarten commented 2 years ago

This could also be easily expanded to cover multiplication by 0 and addition of 0. Should be pretty easy to do.

dbaumgarten commented 2 years ago

So, I just pushed some changes to develop. Using that new version, you example compiles exactly like you would expect it to.

dbaumgarten commented 2 years ago

Released as part of v0.1.11