view gcc/testsuite/gcc.dg/tree-ssa/20040624-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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 (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 "dom2" } } */