URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [ptr-conv-1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* The intermediate conversion to __PTRDIFF_TYPE__ could be lost, resulting in an "invalid types in nop conversion" ICE. */ long long a; void f (void) { int c = 1; volatile int *p = &c; a = (long long) (__PTRDIFF_TYPE__) p; *p; }
Go to most recent revision | Compare with Previous | Blame | View Log