2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / save-restore-3.c
blob5d7aeb0edd9df488ac67963b86ff69131d4e46a8
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" } */
5 void bar (int *);
7 MIPS16 void
8 foo (int *a, int b, int c)
10 int x[0x4000];
11 asm volatile ("" ::: "$2", "$3", "$4", "$5", "$6", "$7", "$8",
12 "$9", "$10", "$11", "$12", "$13", "$14", "$15", "$16",
13 "$18", "$19", "$20", "$21", "$22", "$23", "$24",
14 "$25", "$30", "memory");
15 bar (x);
16 a[b] = 1;
17 a[c] = 1;
19 /* { dg-final { scan-assembler "\tsave\t\\\$4-\\\$6," } } */
20 /* { dg-final { scan-assembler "\trestore\t" } } */