Current Path : /usr/src/contrib/gcc/config/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/gcc/config/floatunsixf.c |
/* Public domain. */ typedef int SItype __attribute__ ((mode (SI))); typedef unsigned int USItype __attribute__ ((mode (SI))); typedef float XFtype __attribute__ ((mode (XF))); XFtype __floatunsixf (USItype u) { SItype s = (SItype) u; XFtype r = (XFtype) s; if (s < 0) r += (XFtype)2.0 * (XFtype) ((USItype) 1 << (sizeof (USItype) * __CHAR_BIT__ - 1)); return r; }