1 /* Check that the __builtin_memset function is inlined when
2 optimizing for speed. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2" } */
5 /* { dg-final { scan-assembler-not "jmp" } } */
6
7 void
8 test00(char *dstb)
9 {
10 __builtin_memset (dstb, 0, 15);
11 }
12