URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr46184.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -ftree-vectorize -fno-tree-copy-prop -fno-tree-dce" } */ extern int A[], B[]; void foo (int z) { int j, i; for (j = 0; j < 32; j++) { int curr_a = A[0]; for (i = 0; i < 16; i++) curr_a = A[i] ? curr_a : z; B[j] = curr_a; } }