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" } */
       4  
       5  void bar (int *);
       6  
       7  MIPS16 void
       8  foo (int *a, int b, int c)
       9  {
      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;
      18  }
      19  /* { dg-final { scan-assembler "\tsave\t\\\$4-\\\$6," } } */
      20  /* { dg-final { scan-assembler "\trestore\t" } } */