blob: 859b2fa30f7df70fb94b22444969a0483a0a9c57 [file] [log] [blame]
/* PR lto/84212 - -Wno-stringop-verflow does not disable warnings from
-flto link stage
{ dg-lto-do link }
{ dg-lto-options { { -O2 -Werror -Wno-stringop-overflow -flto } } } */
#include <string.h>
void clear (char *p, unsigned n)
{
memset (p, 0, n);
}