rt_gccstream/gcc/testsuite/gcc.dg/20050811-2.c

21 lines
325 B
C

/* Test whether -dov doesn't crash. */
/* { dg-do compile } */
/* { dg-options "-O2 -dv -fdump-rtl-postreload" } */
int foo (void)
{
return 6;
}
int bar (int x)
{
if (x < 0)
return foo () + 8;
else if (x > 0)
return 2 * foo ();
else
return foo ();
}
// { dg-final { cleanup-rtl-dump "postreload*" } }