On Thu, Jul 19, 2018 at 9:25 AM Jonathan Wakely <jwak...@redhat.com> wrote: > Sorry for the delay in reviewing this properly, as I've only just > realised that this introduces undefined behaviour, doesn't it? > > It's undefined to use memmove for a type that is not trivially > copyable. All trivial types are trivially copyable, so __is_trivial > was too conservative, but safe (IIRC we used it because there was no > __is_trivially_copyable trait at the time, so __is_trivial was the > best we had). > > There are types which are trivially assignable but not trivially > copyable, and it's undefined to use memmove for such types.
I was still unclear about that, but I forwarded you an e-mail from Marshall with his answer when I asked whether libc++'s use of TriviallyCopyAssignable here was incorrect. Let me know if it applies here, and if not (and that interpretation of the standard is incorrect), I'll update the patch to do as you suggest and run the tests again. Glen