aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/20040624-1.c
blob: eb8e210951c89141c29d2bef930ed3a1c77d8975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-dom1" } */
  
void bar1 (void);
void bar2 (void);

void
foo (unsigned int a, unsigned int b)
{
  if (a >= b)
    bar1 ();
  else if (a <= b)
    bar2 ();
}

/* The second conditional is redundant since we know it must be
   true (to reach the second condition we know a < b via the first
   conditional.  */

/* { dg-final { scan-tree-dump-times "if " 1 "dom1" } } */
/* { dg-final { cleanup-tree-dump "dom1" } } */