aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/20040615-1.c
blob: de7fa11fe474b968b6dda22726859778e2158672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-dom2" } */
  
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 "dom2" } } */