URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pr18792.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/18792 */ /* { dg-do compile } */ /* { dg-options "-O1 -ftree-loop-linear" } */ void put_atoms_in_triclinic_unitcell(float x[][3]) { int i=0,d; while (x[i][3] < 0) for (d=0; d<=3; d++) x[i][d] = 0; while (x[i][3] >= 0) for (d=0; d<=3; d++) x[i][d] = 0; }
Go to most recent revision | Compare with Previous | Blame | View Log