view gcc/testsuite/gcc.dg/pr87672.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

char buf[40];
void test (int x)
{
  __builtin_strcpy (buf, "test");
  __builtin___strcat_chk (buf, "postfix" + x, sizeof (buf));
}

/* { dg-final { scan-tree-dump "memcpy_chk.*, 36\\)" "optimized" } } */