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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [c-c++-common/] [dfp/] [pr35620.c] - Rev 295

Compare with Previous | Blame | View Log

/* { dg-do compile } */
/* { dg-options "-O2" } */
 
#ifdef __cplusplus
typedef float _Decimal32 __attribute__((mode(SD)));
#endif
 
extern void foo (_Decimal32);
_Decimal32 *p;
 
extern int i;
union U { _Decimal32 a; int b; } u;
 
void
blatz (void)
{
  _Decimal32 d;
  u.b = i;
  d = u.a;
  foo (d);
}
 
void
bar (void)
{
  foo (*p);
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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