apply some -Wno-stringop-overread to fix build with GCC 12.4.0.
this warning-as-error happens with MachineDominators.cpp:
usr/include/g++/bits/stl_algobase.h:434:30: error: 'void* __builtin_memcpy(
apply some -Wno-stringop-overread to fix build with GCC 12.4.0.
this warning-as-error happens with MachineDominators.cpp:
usr/include/g++/bits/stl_algobase.h:434:30: error: 'void* __builtin_memcpy(void*, const void*, long unsigned int)' r eading between 9 and 9223372036854775807 bytes from a region of size 8 [-Werror=stringop-overread] 434 | __builtin_memmove(__result, __first, sizeof(_Tp) * _Num);
show more ...
|