OSDN Git Service

Commit for Jiangning.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / save-restore-3.c
1 /* Check that we can use the save instruction to save spilled arguments
2    when the argument save area is out of range of a direct load or store.  */
3 /* { dg-options "(-mips16) isa_rev>=1 -mabi=32 -O2" } */
4 /* { dg-skip-if "PR target/46610" { mips-sgi-irix6* } } */
5
6 void bar (int *);
7
8 MIPS16 void
9 foo (int *a, int b, int c)
10 {
11   int x[0x4000];
12   asm volatile ("" ::: "$2", "$3", "$4", "$5", "$6", "$7", "$8",
13                 "$9", "$10", "$11", "$12", "$13", "$14", "$15", "$16",
14                 "$18", "$19", "$20", "$21", "$22", "$23", "$24",
15                 "$25", "$30", "memory");
16   bar (x);
17   a[b] = 1;
18   a[c] = 1;
19 }
20 /* { dg-final { scan-assembler "\tsave\t\\\$4-\\\$6," } } */
21 /* { dg-final { scan-assembler "\trestore\t" } } */