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