URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [fp-int-convert-float.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test floating-point conversions. Standard types and float. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do run } */ /* { dg-options "" } */ #include <float.h> #include "fp-int-convert.h" int main (void) { TEST_I_F(signed char, unsigned char, float, FLT_MANT_DIG); TEST_I_F(signed short, unsigned short, float, FLT_MANT_DIG); TEST_I_F(signed int, unsigned int, float, FLT_MANT_DIG); TEST_I_F(signed long, unsigned long, float, FLT_MANT_DIG); TEST_I_F(signed long long, unsigned long long, float, FLT_MANT_DIG); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log