URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr22061-4.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
void bar (int N) { void foo (int a[2][N++]) {} int a[2][N]; foo (a); int b[2][N]; foo (b); if (sizeof (a) != sizeof (int) * 2 * 1) abort (); if (sizeof (b) != sizeof (int) * 2 * 2) abort (); if (N != 3) abort (); } int main (void) { bar (1); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log