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/] [i386/] [pr30120.c] - Diff between revs 318 and 384

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

Rev 318 Rev 384
/* { dg-do run } */
/* { dg-do run } */
/* { dg-options "-O2 -ffast-math" } */
/* { dg-options "-O2 -ffast-math" } */
 
 
extern void abort (void);
extern void abort (void);
 
 
static void
static void
foo (double a, double weight, const double *ring, double *phase)
foo (double a, double weight, const double *ring, double *phase)
{
{
  *phase = *ring * weight;
  *phase = *ring * weight;
}
}
 
 
void
void
foo2 (void)
foo2 (void)
{
{
  foo (0, 1, (double *) 0, (double *) 0);
  foo (0, 1, (double *) 0, (double *) 0);
}
}
 
 
int
int
main (void)
main (void)
{
{
  double t1 = 1, c1;
  double t1 = 1, c1;
  foo (0, 1, &t1, &c1);
  foo (0, 1, &t1, &c1);
  if (c1 < 0.5)
  if (c1 < 0.5)
    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.