URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr43560.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-require-weak "" } */ int g_6[1][2] = {{1,1}}; int g_34 = 0; int *const g_82 = &g_6[0][1]; int *g_85[2][1] __attribute__((weak)); void __attribute__((noinline)) func_4 (int x) { int i; for (i = 0; i <= x; i++) { if (g_6[0][1]) { *g_82 = 1; } else { int **l_109 = &g_85[1][0]; if (&g_82 != l_109) { } else { *l_109 = &g_6[0][1]; } *g_82 = 1; } } } int main (void) { g_85[0][0] = &g_34; g_85[1][0] = &g_34; func_4(1); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log