summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20050811-1.c
blob: e74a14f192eb6dbc8ef1ca9d4e4de3a84e30f0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 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 ();
}