view gcc/testsuite/gcc.dg/pr50613.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* 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);
}