Is there a way to use the functions like:
- sqrt()
- exp()
- log()
where they do NOT use the 16-bit compact instructions but rather all of the instructions are 32-bit?
So instead of this:
16-bit
05A6 MVK.L1 0, A3
92C7 MV.L2X A5, B4
I get this:
32-bit
0180A358 MVK.L1 0, A3
0214105A MV.L2X A5, B4
Thanks!