(no title)
Falell
|
2 years ago
Not a direct compiler optimization, but consider memcpy() vs memmove() as an example. If you know two regions of memory do not overlap you can call memcpy() for a direct optimized copy, but if they overlap you must call memmove() and introduce an intermediate copy.
johncolanduoni|2 years ago
Sohcahtoa82|2 years ago
murderfs|2 years ago