OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.target/] [arm/] [fp16-compile-exprtype.c] - Diff between revs 313 and 384

Only display areas with differences | Details | Blame | View Log

Rev 313 Rev 384
/* Test that expressions involving __fp16 values have the right types.  */
/* Test that expressions involving __fp16 values have the right types.  */
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-mfp16-format=ieee" } */
/* { dg-options "-mfp16-format=ieee" } */
 
 
/* This produces a diagnostic if EXPR doesn't have type TYPE.  */
/* This produces a diagnostic if EXPR doesn't have type TYPE.  */
#define CHECK(expr,type)                        \
#define CHECK(expr,type)                        \
  do {                                          \
  do {                                          \
    type v;                                     \
    type v;                                     \
    __typeof (expr) *p = &v;                    \
    __typeof (expr) *p = &v;                    \
  } while (0);
  } while (0);
 
 
volatile __fp16 f1;
volatile __fp16 f1;
volatile __fp16 f2;
volatile __fp16 f2;
 
 
int
int
main (void)
main (void)
{
{
  CHECK (f1, __fp16);
  CHECK (f1, __fp16);
  CHECK (+f1, float);
  CHECK (+f1, float);
  CHECK (-f1, float);
  CHECK (-f1, float);
  CHECK (f1+f2, float);
  CHECK (f1+f2, float);
  CHECK ((__fp16)(f1+f2), __fp16);
  CHECK ((__fp16)(f1+f2), __fp16);
  CHECK ((__fp16)99.99, __fp16);
  CHECK ((__fp16)99.99, __fp16);
  CHECK ((f1+f2, f1), __fp16);
  CHECK ((f1+f2, f1), __fp16);
}
}
 
 
 
 
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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