gcc/gcc/testsuite/gcc.dg/pr52045.c

12 lines
221 B
C

/* { dg-do compile } */
/* { dg-options "-O3 -ftracer -fno-tree-ccp -fno-tree-copy-prop -fno-tree-dce" } */
char *vx;
char buf[20];
void
foo (void)
{
vx = __builtin___stpcpy_chk (buf, vx ? "gh" : "e", sizeof(buf));
}