aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/fp16-variadic-1.c
blob: 52b438638a1763a4b729f13895c743e2b314d458 (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
35
36
37
/* Test promotion of __fp16 to double as arguments to variadic function.  */

/* { dg-do run } */
/* { dg-options "-mfp16-format=ieee" } */

#include <stdlib.h>
#include <stdarg.h>

extern int f (int n, ...);

int 
f (int n, ...)
{
  if (n == 2)
    {
      double xx, yy;
      va_list ap;
      va_start (ap, n);
      xx = va_arg (ap, double);
      yy = va_arg (ap, double);
      va_end (ap);
      if (xx == 42.0 && yy == -42.0)
	return 1;
    }
  return 0;
}

static __fp16 x = 42.0;
static __fp16 y = -42.0;

int
main (void)
{
  if (!f (2, x, y))
    abort ();
  return 0;
}