blob: 4135f71e3c41a5e19f82a92b9e4fcc4fbd31c717 [file] [log] [blame]
/* 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);
}