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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [config/] [floatunsidf.c] - Blame information for rev 378

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 282 jeremybenn
/* Public domain.  */
2
typedef int SItype __attribute__ ((mode (SI)));
3
typedef unsigned int USItype __attribute__ ((mode (SI)));
4
typedef float DFtype __attribute__ ((mode (DF)));
5
 
6
DFtype
7
__floatunsidf (USItype u)
8
{
9
  SItype s = (SItype) u;
10
  DFtype r = (DFtype) s;
11
  if (s < 0)
12
    r += (DFtype)2.0 * (DFtype) ((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.