re PR tree-optimization/60770 (disappearing clobbers)
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr60770-1.c
blob021d88430c4ac265e93d8931086216d2fae4b4b8
1 /* { dg-do compile } */
2 /* { dg-options "-O -Wall" } */
4 int f(int n){
5 int*p;
7 int yyy=n;
8 p=&yyy;
10 return *p; /* { dg-warning "yyy" } */