blob: b0061c18bee315b890291b55f02f88018b362b23 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-dce3" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
int t() __attribute__ ((const));
q()
{
int i = t();
if (!i)
i = t();
}
/* There should be no IF conditionals. */
/* { dg-final { scan-tree-dump-times "if " 0 "dce3"} } */
/* { dg-final { cleanup-tree-dump "dce3" } } */