OSDN Git Service

PR rtl-optimization/52139
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / pr42327.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fcheck-data-deps" } */
3
4 void foo(char *str)
5 {
6    while (*str != 0) *str++ = 0;
7 }