blob: dcfa131510ccaf19786094781271f64cbcba89be [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1-details" } */
int
foo (int *p)
{
*p = 0;
return *p;
}
/* The store to *p should be propagated to the load statement. */
/* { dg-final { scan-tree-dump "Replaced \\\*p_.\\\(D\\\) with 0" "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */