1  /* Verify that the delay slot is stuffed with register pop insns for normal
       2     (i.e. not interrupt handler) function returns.  If everything goes as
       3     expected we won't see any nop insns.  */
       4  /* { dg-do compile }  */
       5  /* { dg-options "-O1" } */
       6  /* { dg-final { scan-assembler-not "nop" } } */
       7  
       8  int test00 (int a, int b);
       9  
      10  int
      11  test01 (int a, int b, int c, int d)
      12  {
      13    return test00 (a, b) + c;
      14  }