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