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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [builtins-32.c] - Diff between revs 816 and 826

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

Rev 816 Rev 826
/* Copyright (C) 2004 Free Software Foundation.
/* Copyright (C) 2004 Free Software Foundation.
 
 
   Check that constant folding of signbit, signbitf and signbitl math
   Check that constant folding of signbit, signbitf and signbitl math
   functions doesn't break anything and produces the expected results.
   functions doesn't break anything and produces the expected results.
 
 
   Written by Roger Sayle, 28th January 2004.  */
   Written by Roger Sayle, 28th January 2004.  */
 
 
/* { dg-do run } */
/* { dg-do run } */
/* { dg-options "-O2" } */
/* { dg-options "-O2" } */
 
 
extern void abort(void);
extern void abort(void);
 
 
extern int signbit(double);
extern int signbit(double);
extern int signbitf(float);
extern int signbitf(float);
extern int signbitl(long double);
extern int signbitl(long double);
 
 
int test (double x)
int test (double x)
{
{
  return signbit(x);
  return signbit(x);
}
}
 
 
int testf (float x)
int testf (float x)
{
{
  return signbitf(x);
  return signbitf(x);
}
}
 
 
int testl (long double x)
int testl (long double x)
{
{
  return signbitl(x);
  return signbitl(x);
}
}
 
 
 
 
int main()
int main()
{
{
  if (test (0.0) != 0)
  if (test (0.0) != 0)
    abort ();
    abort ();
  if (test (1.0) != 0)
  if (test (1.0) != 0)
    abort ();
    abort ();
  if (test (-2.0) == 0)
  if (test (-2.0) == 0)
    abort ();
    abort ();
 
 
  if (testf (0.0f) != 0)
  if (testf (0.0f) != 0)
    abort ();
    abort ();
  if (testf (1.0f) != 0)
  if (testf (1.0f) != 0)
    abort ();
    abort ();
  if (testf (-2.0f) == 0)
  if (testf (-2.0f) == 0)
    abort ();
    abort ();
 
 
  if (testl (0.0l) != 0)
  if (testl (0.0l) != 0)
    abort ();
    abort ();
  if (testl (1.0l) != 0)
  if (testl (1.0l) != 0)
    abort ();
    abort ();
  if (testl (-2.0l) == 0)
  if (testl (-2.0l) == 0)
    abort ();
    abort ();
 
 
  return 0;
  return 0;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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