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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20020116-2.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* This testcase ICEd on sparc64 because -mcpu=supersparc and implicit -m64 resulted in MASK_V8 and MASK_V9 to be set at the same time. */ /* { dg-do compile } */ /* { dg-options "" } */ /* { dg-options "-mcpu=supersparc" { target sparc*-*-* } } */ void bar (long *x, long *y); void foo (int x, long *y, long *z) { int i; for (i = x - 1; i >= 0; i--) { bar (z + i * 3 + 1, y); bar (z + i * 3 + 2, y); } }
Go to most recent revision | Compare with Previous | Blame | View Log