aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/cris/rld-legit1.c
blob: 53a38af2c3b8dc98f6ecd4c98f4c1b878dd6037d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Check that we don't get unnecessary insns due to reload using more
   insns than needed due to reloading of more locations than
   needed.  */
/* { dg-options -O2 } */
/* { dg-final { scan-assembler-not "movs.w" } } */
/* { dg-final { scan-assembler-not "move.w" } } */

/* As torture/pr24750-2.c, except we need to clobber R8 for thorough
   testing and know we can do, since we replace the frame-pointer.  */

int
f (short *a, char *y)
{
  __asm__ ("" : : :
#ifndef __PIC__
	   "r0",
#endif
	   "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8",
	   "r9", "r10", "r11", "r12", "r13");
  return y[*a];
}