URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [20030627-1.c] - Rev 696
Go to most recent revision | Compare with Previous | Blame | View Log
/* This tests whether non-offsettable memory operands are reloaded correctly in certain corner cases on s390 targets. */ /* { dg-do compile } */ /* { dg-options "-std=gnu89" } */ void test_inout (char *bd, int xd, char *bs, int xs) { *(long long *)(bd + xd + 4093) = *(long long *)(bs + xs + 4093); } void test_in (char *bd, int xd, char *bs, int xs) { *(long long *)(bd + xd) = *(long long *)(bs + xs + 4093); } void test_out (char *bd, int xd, char *bs, int xs) { *(long long *)(bd + xd + 4093) = *(long long *)(bs + xs); }
Go to most recent revision | Compare with Previous | Blame | View Log