Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / save-restore-2.c
blob899460fe7b61ab4b03ee214a928b99a67d0be81e
1 /* Check that we can use the save instruction to save spilled arguments. */
2 /* { dg-options "(-mips16) isa_rev>=1 -mabi=32" } */
3 /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
5 MIPS16 void
6 foo (int *a, int b, int c)
8 asm volatile ("" ::: "$2", "$3", "$4", "$5", "$6", "$7", "$8",
9 "$9", "$10", "$11", "$12", "$13", "$14", "$15", "$16",
10 "$17", "$18", "$19", "$20", "$21", "$22", "$23", "$24",
11 "$25", "$30", "memory");
12 a[b] = 1;
13 a[c] = 1;
15 /* { dg-final { scan-assembler "\tsave\t\\\$4-\\\$6," } } */
16 /* { dg-final { scan-assembler "\trestore\t" } } */