URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr22098-3.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern void exit (int); typedef __SIZE_TYPE__ size_t; int n = 0; int f (void) { return ++n; } int main (void) { int a = 0; int *p; size_t b; b = (size_t)(p = &(int []){0, f(), 2}[1]); if (*p != 1 || *(int *)b != 1 || n != 1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log