0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

ircd::buffer: Suppress errant array/stringop-overflow in debug+assert mode.

This commit is contained in:
Jason Volk 2023-01-15 20:29:18 -08:00
parent c78ab62227
commit f8538d3c5b

View file

@ -85,7 +85,18 @@ ircd::buffer::copy(char *&__restrict__ dest,
assert(!overlap(const_buffer(dest, cpsz), src));
assert(cpsz <= size(src));
assert(cpsz <= remain);
// Suppress warnings which present from the __builtin_memcpy() but these
// are actually caused by the overlap assertion above which should have no
// side-effects; this is very likely a bug in gcc.
#pragma GCC diagnostic push
#ifdef RB_ASSERT
#pragma GCC diagnostic ignored "-Warray-bounds"
#pragma GCC diagnostic ignored "-Wstringop-overflow"
#endif
__builtin_memcpy(dest, srcp, cpsz);
#pragma GCC diagnostic pop
dest += cpsz;
assert(dest <= stop);
return dest;