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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [single-precision-constant.c] - Diff between revs 298 and 338

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

Rev 298 Rev 338
/* Test that double precision constants are correctly handled
/* Test that double precision constants are correctly handled
   when code is compiled with -fsingle-precision-constant */
   when code is compiled with -fsingle-precision-constant */
/* Origin: Carlos O'Donell <carlos@codesourcery.com> */
/* Origin: Carlos O'Donell <carlos@codesourcery.com> */
 
 
/* { dg-do run } */
/* { dg-do run } */
/* { dg-options "-fsingle-precision-constant" } */
/* { dg-options "-fsingle-precision-constant" } */
/* { dg-add-options c99_runtime } */
/* { dg-add-options c99_runtime } */
 
 
#include <math.h>
#include <math.h>
#include <float.h>
#include <float.h>
 
 
#include "builtins-config.h"
#include "builtins-config.h"
 
 
int main (void)
int main (void)
{
{
  int result = 0;
  int result = 0;
  double local_DBL_MAX = DBL_MAX;
  double local_DBL_MAX = DBL_MAX;
  double local_DBL_MIN = DBL_MIN;
  double local_DBL_MIN = DBL_MIN;
#ifdef HAVE_C99_RUNTIME
#ifdef HAVE_C99_RUNTIME
  if (isinf (local_DBL_MAX))
  if (isinf (local_DBL_MAX))
    result |= 1;
    result |= 1;
#endif
#endif
  if (local_DBL_MIN <= 0.0)
  if (local_DBL_MIN <= 0.0)
    result |= 1;
    result |= 1;
  return result;
  return result;
}
}
 
 

powered by: WebSVN 2.1.0

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