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/] [compile/] [pr22422.c] - Rev 823

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

/* We should not crash trying to figure out the points-to sets for the below.  We used to because we
   ended up adding pointers to the points-to set of the ANYTHING variable.  */
struct D
{
  int n;
  int c [8];
};
 
struct A
{
  int i;
  char *p;
};
 
struct B
{
  struct A *a;
  struct D *d;
};
 
int dtInsert1 (struct B *b)
{
  struct A a = { 0, 0 };
  struct D *d;
  b->a = &a;
  d = b->d;
  &d->c [d->n];
  return 0;
}
 
 

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.