https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83902
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |P1 CC| |jakub at gcc dot gnu.org --- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Started with r256448. Testcase for the testsuite: extern "C" void *memset (void *, int, __SIZE_TYPE__); template <int T> struct B { void foo () { memset (4, 0, 4 * T * sizeof(float)); } };