https://bugzilla.gdcproject.org/show_bug.cgi?id=293
--- Comment #1 from ARaspiK <aras...@protonmail.com> --- General pseudocode: void* dst = ...; Possible D code for alignment assumption: assert ((dst & -0x10) == dst); assert ((dst & 0xf) == 0); Possible C code for alignment assumption: dst = __builtin_assume_aligned(dst, 16); Here is a StackOverflow (capitalization?) question on it: https://stackoverflow.com/q/9608171/9781227 -- You are receiving this mail because: You are watching all bug changes.