Convert
This is a preprocessing step in synthesizing always blocks.
The idea is to eliminate any else statements by turning an
if (cond) --> begin body1 if (cond) body1 else if (!cond) body2 body2 end
This transform used to be important, but now VL has smarter edge-triggered block handling, so it is probably not at all useful. We don't even run this until after combinational and flop-like always blocks have already been transformed, and even then, it seems unlikely that this could actually help with latch synthesis.
We expect it to be run only after expressions are sized.