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
Miri implements memcpy as basically an alias of copy_nonoverlapping. That's not correct though: according to the C spec, memcpy is UB when the pointer is null or dangling, even if the copy is for 0 bytes. We should fix our shim.