aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/sh/pr54602-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.target/sh/pr54602-2.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.target/sh/pr54602-2.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.target/sh/pr54602-2.c b/gcc-4.8.1/gcc/testsuite/gcc.target/sh/pr54602-2.c
deleted file mode 100644
index 4f3877c41..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.target/sh/pr54602-2.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Verify that the delay slot is not stuffed with register pop insns for
- interrupt handler function returns on SH1* and SH2* targets, where the
- rte insn uses the stack pointer. */
-/* { dg-do compile { target "sh*-*-*" } } */
-/* { dg-options "-O1" } */
-/* { dg-skip-if "" { "sh*-*-*" } { "*" } { "-m1*" "-m2*" } } */
-/* { dg-final { scan-assembler-times "nop" 1 } } */
-
-int test00 (int a, int b);
-
-int __attribute__ ((interrupt_handler))
-test01 (int a, int b, int c, int d)
-{
- return test00 (a, b) + c;
-}