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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20010403-1.c] - Rev 688

Compare with Previous | Blame | View Log

void b (int *);
void c (int, int);
void d (int);
 
int e;
 
void a (int x, int y)
{
  int f = x ? e : 0;
  int z = y;
 
  b (&y);
  c (z, y);
  d (f);
}
 
void b (int *y)
{
  (*y)++;
}
 
void c (int x, int y)
{
  if (x == y)
    abort ();
}
 
void d (int x)
{
}
 
int main (void)
{
  a (0, 0);
  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.