blob: 129729037e22822365f4a0a875594f722ad795d9 [file] [log] [blame]
/* Check that on SH2A the 4 byte mov.w displacement insn is generated to
handle larger displacements. If it is generated correctly, there should
be no base address adjustments outside the mov.w insns. */
/* { dg-do compile } */
/* { dg-options "-O1" } */
/* { dg-skip-if "" { "sh*-*-*" } { "*" } { "-m2a*" } } */
/* { dg-final { scan-assembler-not "add|sub" } } */
void
testfunc_00 (const short* ap, short* bp)
{
bp[100] = ap[15];
bp[200] = ap[50];
bp[900] = ap[71];
bp[0] = ap[25];
}
void
testfunc_01 (volatile const short* ap, volatile short* bp)
{
bp[100] = ap[15];
bp[200] = ap[50];
bp[900] = ap[71];
bp[0] = ap[25];
}