blob: cc9dde95255b4c2c3e518ebf20367235374f826e [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
extern void abort (void);
unsigned int
foo (unsigned int x, unsigned int y)
{
unsigned int z;
if (x >= y)
return 1;
if (y == x)
abort ();
return 0;
}
/* { dg-final { scan-tree-dump-not "abort" "optimized" } } */