You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
th_memmove is used with overlapping source and destination, as you'd expect, but it has restrict qualifiers on its pointers, leading to undefined behaviour.
This prompts Arm Compiler 6 to use __aeabi_memcpy for the memmove inside the default implementation, rather than __aeabi_memmove.