URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr23386.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-O2" } */ int f[100]; int g[100]; unsigned char f1 (int a, int b) { __SIZE_TYPE__ ix; if (a) return 1; for (ix = 4; ix--;) if (f[ix] != g[ix]) return 0; return 1; } int main(void) { if (!f1 (0, 2)) __builtin_abort(); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log