aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr42327.c
blob: c0d3811b2494e4e9569a2d4ddb8607dd2160386b (plain)
1
2
3
4
5
6
7
/* { dg-do compile } */
/* { dg-options "-O1 -fcheck-data-deps" } */

void foo(char *str)
{
   while (*str != 0) *str++ = 0;
}