blob: a2cade4c4bae20b53fbf796081aeb20d59ea34df [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-dom1-details" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
void t(void);
void q(void);
void q1(void);
void
threading(int a,int b)
{
if (a>b)
t();
else
q();
if (a<=b)
q1();
}
/* We should thread the jump twice and elliminate it. */
/* { dg-final { scan-tree-dump-times "Threaded" 2 "dom1"} } */
/* { dg-final { cleanup-tree-dump "dom1" } } */