aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/s390/20050524-1.c
blob: 7b94fd0f065d0c7fd8326e180192105bbc0c01b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* This test case used to abort due to a reload bug with
   elimination offsets.  */

/* { dg-do run } */
/* { dg-options "-O2 -mpacked-stack" } */

extern void abort (void);

double bar (double) __attribute__ ((noinline));
double bar (double x) { return x; }

double
foo (int j, double f0, double f2, double f4, double f6, double x) __attribute__ ((noinline));

double
foo (int j, double f0, double f2, double f4, double f6, double x)
{
  if (j)
    return bar (x) + 4.0;
  else
    return bar (x);
}

int
main (void)
{
  if (foo (0, 0, 0, 0, 0, 10) != 10)
    abort ();
  if (foo (1, 0, 0, 0, 0, 10) != 14)
    abort ();

  return 0;
}