1 2 3 4 5 6 7 8 9 10 11 12 13
/* { dg-do compile } */ /* { dg-options "-O2 -Wall" } */ extern char* stpcpy (char*, const char*); int f (char* s) { char a[32]; __builtin___strcpy_chk (a, s, __builtin_object_size (a, 1)); return __builtin_strlen (a); }