aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sh/pr54602-1.c
blob: bd402b3a0c17ca1eb4cbfdf2b77d5d64394de9de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Verify that the delay slot is stuffed with register pop insns for normal
   (i.e. not interrupt handler) function returns.  If everything goes as
   expected we won't see any nop insns.  */
/* { dg-do compile }  */
/* { dg-options "-O1" } */
/* { dg-skip-if "" { "sh*-*-*" } { "-m5*"} { "" } }  */
/* { dg-final { scan-assembler-not "nop" } } */

int test00 (int a, int b);

int
test01 (int a, int b, int c, int d)
{
  return test00 (a, b) + c;
}