blob: 7c7604826216a2cfeb6fff4e4bf58b003be9aa93 [file] [log] [blame]
/* { 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;
}