blob: a22fec87e3d8a31ad6da51f81f476ba70a14aa70 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-dse1" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
foo( int *a)
{
*a = 5;
*a = 3;
}
/* We should eliminate the first assignment to *p, but not the second. */
/* { dg-final { scan-tree-dump-times "= 5" 0 "dse1"} } */
/* { dg-final { scan-tree-dump-times "= 3" 1 "dse1"} } */
/* { dg-final { cleanup-tree-dump "dse1" } } */