blob: e888d1d8c4ec7bcbf395edfd1d742243668f7763 [file] [log] [blame]
/* Check that the __builtin_memset function is inlined when
optimizing for speed. */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "jmp" } } */
void
test00(char *dstb)
{
__builtin_memset (dstb, 0, 15);
}