blob: 010aa5a09ed19f73e0558e418577c8d20b6dd24b [file] [log] [blame]
/* Test whether -fdump-rtl-all-graph doesn't crash. */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-rtl-all-graph" } */
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 "*" } }