URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [arm/] [fp16-variadic-1.c] - Rev 318
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