OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [config/] [floatunsitf.c] - Blame information for rev 816

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
/* Public domain.  */
2
typedef int SItype __attribute__ ((mode (SI)));
3
typedef unsigned int USItype __attribute__ ((mode (SI)));
4
typedef float TFtype __attribute__ ((mode (TF)));
5
 
6
TFtype
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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.