OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [arm/] [fp16-variadic-1.c] - Rev 378

Go to most recent revision | Compare with Previous | Blame | View Log

/* 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;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.