aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/strlenopt-43.c
blob: 13539fcb8684c6d57ab0388ad546bcdd031a220a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR tree-optimization/83896 - ice in get_string_len on a call to strlen
   with non-constant length
   { dg-do compile }
   { dg-options "-O2 -Wall" } */

#include "strlenopt.h"

extern char a[5];
extern char b[];

void f (void)
{
  if (strlen (b) != 4)
    memcpy (a, b, sizeof a);
}