URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr36227.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run { target { stdint_types } } } */ #include <stdint.h> extern void abort (void); int main() { int i = 1; int *p = &i; uintptr_t iptr; iptr = (uintptr_t)p - (uintptr_t)&iptr; p = (int *)((uintptr_t)&iptr + iptr); if (*p != 1) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log