blob: 079ee745a2c2c4171c5534fcbd3e9b9951103bc5 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-strlen" } */
void f (unsigned);
void f3 (void)
{
char s[] = "1234";
f (__builtin_strlen (s));
f (__builtin_strlen (s));
f (__builtin_strlen (s));
}
/* { dg-final { scan-tree-dump-times "strlen" 0 "strlen1" } } */