/* pr38048-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif int foo () { int mat[2][1]; int (*a)[1] = mat; int det = 0; int i; mat[0][0] = 1; mat[1][0] = 2; for (i = 0; i < 2; ++i) det += a[i][0]; return det; } void testTortureExecute (void) { if (foo () != 3) ASSERT (0); return; }