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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [dilayout.c] - Rev 853

Go to most recent revision | Compare with Previous | Blame | View Log

struct ii
{
  int a;
  int b;
};
 
struct foo
{
  int a;
  struct ii ab;
  int b;
};
 
struct ii
foo (int *p, struct foo a)
{
  p[0] = a.a;
  p[1] = a.ab.a;
  p[2] = a.ab.b;
  p[3] = a.b;
  return a.ab;
}
 
str (struct ii ab, struct ii *p)
{
  *p = ab;
}
 
ll (long long ab, long long *p)
{
  *p = ab;
}
 
 

Go to most recent revision | 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.