aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/m68k/pr36134.c
blob: c91956b5c33147848f78d3656a0590b5edb8d997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* pr36134.c

   This test ensures that the shorter LEA instruction is used in preference
   to the longer ADD instruction.

   This preference is applicable to ColdFire only.  On CPU32, we can
   use a sequence of two ADDQ instructions, which is faster than the
   LEA instruction.  */

/* { dg-do compile }  */
/* { dg-skip-if "" { *-*-* } { "-mcpu=*" } { "-mcpu=5208" } } */
/* { dg-options "-O2 -mcpu=5208" }  */
/* { dg-final { scan-assembler "lea" } } */
/* { dg-final { scan-assembler-not "add" } } */

int *a, *b;

void
f ()
{
  while (a > b)
    {
      *a++ = *b++;
      *a++ = *b++;
      *a++ = *b++;
      *a++ = *b++;
    }
}