Micro-optimization tracking list
Author: DentosalCreated Jul 14, 2025Updated Aug 11, 2026
Labelscompiler: optimization
I'm using this issue to keep track of micro-optimizations that should be applied. They're simple to add, but I've not had time to do a PR yet.
- Double
EQto check for booleanneseq a a b; eq a a 0can be replaced withlt a 0 b
Source: FuelLabs/sway