]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/floatunsitf.c
testsuite, rs6000: Fix builtins-6-p9-runnable.c for BE [PR114744]
[thirdparty/gcc.git] / libgcc / floatunsitf.c
CommitLineData
2a3ebe77
JM
1/* Public domain. */
2typedef int SItype __attribute__ ((mode (SI)));
3typedef unsigned int USItype __attribute__ ((mode (SI)));
4typedef float TFtype __attribute__ ((mode (TF)));
5
6TFtype
7__floatunsitf (USItype u)
8{
9 SItype s = (SItype) u;
10 TFtype r = (TFtype) s;
11 if (s < 0)
12 r += (TFtype)2.0 * (TFtype) ((USItype) 1
13 << (sizeof (USItype) * __CHAR_BIT__ - 1));
14 return r;
15}