aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/pr60770-1.c
blob: 021d88430c4ac265e93d8931086216d2fae4b4b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O -Wall" } */

int f(int n){
  int*p;
  {
    int yyy=n;
    p=&yyy;
  }
  return *p; /* { dg-warning "yyy" } */
}