blob: 27c6fba36361e74f9d75033dae7d6e7cb9101d41 [file] [log] [blame]
/* PR tree-optimization/50613 */
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-ccp" } */
#include "strlenopt.h"
char buf[26];
static inline void
bar (char *__restrict dest, const char *__restrict src)
{
strcpy (dest, src);
}
void
foo (char *p)
{
if (strlen (p) < 50)
bar (buf, p);
}