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.c-torture/] [execute/] [20020314-1.c] - Rev 338

Compare with Previous | Blame | View Log

void f(void * a, double y)
{
}
 
double g (double a, double b, double c, double d)
{
  double x, y, z;
  void *p;
 
  x = a + b;
  y = c * d;
 
  p = alloca (16);
 
  f(p, y);
  z = x * y * a;
 
  return z + b;
}
 
main ()
{
  double a, b, c, d;
  a = 1.0;
  b = 0.0;
  c = 10.0;
  d = 0.0;
 
  if (g (a, b, c, d) != 0.0)
    abort ();
 
  if (a != 1.0 || b != 0.0 || c != 10.0 || d != 0.0)
    abort ();
 
  exit (0);
}
 

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.