Hi ,
I'm trying to do a 64-bit divide operation in C using Cortex-M3.
Is there a reference of optimized assembly code for same or recommended approach?
Thanks
as it's directly implemented by the compiler, I think you can safely assume that it will be well optimised ... ?
Sure. I just was wondering if there any variations or some switches to tweak it in terms of performance.
Thanks for the help.
The compiler's divide is optimized for the general use case. If you need a special divide, you are free to write your own.