aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/libgcc/floatunsixf.c
blob: 52511688dad3bbb0a9ab9dfcc640a4b05496deef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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;
}