view gcc/testsuite/gcc.dg/20050811-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* Test whether graph dumping doesn't crash.  */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-rtl-postreload-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 ();
}