aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/redundant-assign-zero-1.c
blob: eadf1814916c3a9c5c1d6e967449ccb4630c7dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-fre -fdump-tree-dse-details" } */

void blah (char *);

void bar ()
{
  char a[256] = "";
  a[3] = 0; 
  blah (a);
}

/* { dg-final { scan-tree-dump-times "Deleted redundant store" 1 "dse1"} } */