blob: 35a8169966ac451f9098a7bccccaba6e5d0bee2f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-dom1" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
void bar1 (void);
void bar2 (void);
void
foo (unsigned int a, unsigned int b)
{
if (a >= b)
bar1 ();
else if (b <= a)
bar2 ();
}
/* { dg-final { scan-tree-dump-times "bar2" 0 "dom1" } } */
/* { dg-final { cleanup-tree-dump "dom1" } } */