aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/pr86061.c
blob: f2b079298c474a011e5fecdc57af3d6dc4566eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-options "-O2 -fdump-tree-dse-details -fno-tree-fre" } */


struct S { int i; char n[128]; int j; };

void f (char*);

void g (struct S *p)
{
  char a[sizeof p->n + 1];

  __builtin_memset (a, 0, sizeof a);   // dead store, can be eliminated

  __builtin_strncpy (a, p->n, sizeof a - 1);
  a[sizeof a - 1] = '\0';

  f (a);
}

/* { dg-final { scan-tree-dump-times "Deleted dead call" 1 "dse1" } } */