It would be nice if they'd be compiling time commands that only cause typecasting in that position(no jumps).
Most of all it would produce cleaner code if you have to cast:
Code: Select all
d.l = double(a.l) * double(b.) / double(c.l)
Atm that code looks like this:
Code: Select all
aDouble.d = a.l
d.l = aDouble.d * b.l * c.l