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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr39074-3.c] - Rev 826

Compare with Previous | Blame | View Log

/* { dg-do run } */
/* { dg-require-effective-target stdint_types } */
 
#include <stdint.h>
 
uintptr_t __attribute__((noinline,const)) bar(int ***p) { return (uintptr_t)p; }
extern void abort (void);
int main()
{
  int i, j;
  int *y = &j;
  int **a = &y, **x;
  int ***p;
  uintptr_t b;
  b = bar(&a);
  p = (int ***)b;
  x = *p;
  *x = &i;
  i = 1;
  *y = 0;
  if (i != 0)
    abort ();
  return 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.