PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / tailcall-5.c
blob7aa433ecf7a47c04df583d22cef608c021f8e5c2
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-tailc" } */
4 void
5 set_integer (void *dest, int value, int length)
7 int tmp = value;
8 __builtin_memcpy (dest, (void *) &tmp, length);
11 /* { dg-final { scan-tree-dump-not "tail call" "tailc" } } */
12 /* { dg-final { cleanup-tree-dump "tailc" } } */