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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20000113-1.c] - Diff between revs 149 and 154

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

Rev 149 Rev 154
struct x {
struct x {
  unsigned x1:1;
  unsigned x1:1;
  unsigned x2:2;
  unsigned x2:2;
  unsigned x3:3;
  unsigned x3:3;
};
};
 
 
foobar (int x, int y, int z)
foobar (int x, int y, int z)
{
{
  struct x a = {x, y, z};
  struct x a = {x, y, z};
  struct x b = {x, y, z};
  struct x b = {x, y, z};
  struct x *c = &b;
  struct x *c = &b;
 
 
  c->x3 += (a.x2 - a.x1) * c->x2;
  c->x3 += (a.x2 - a.x1) * c->x2;
  if (a.x1 != 1 || c->x3 != 5)
  if (a.x1 != 1 || c->x3 != 5)
    abort ();
    abort ();
  exit (0);
  exit (0);
}
}
 
 
main()
main()
{
{
  foobar (1, 2, 3);
  foobar (1, 2, 3);
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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