aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20030627-1.c
blob: 4135f71e3c41a5e19f82a92b9e4fcc4fbd31c717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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);
}