aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/gcc/testsuite/gcc.target/sh/sh2a-tbr-jump.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.7/gcc/testsuite/gcc.target/sh/sh2a-tbr-jump.c')
-rw-r--r--gcc-4.7/gcc/testsuite/gcc.target/sh/sh2a-tbr-jump.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc-4.7/gcc/testsuite/gcc.target/sh/sh2a-tbr-jump.c b/gcc-4.7/gcc/testsuite/gcc.target/sh/sh2a-tbr-jump.c
deleted file mode 100644
index 8029b03dd..000000000
--- a/gcc-4.7/gcc/testsuite/gcc.target/sh/sh2a-tbr-jump.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Testcase to check generation of a SH2A specific,
- TBR relative jump instruction - 'JSR @@(disp8,TBR)'. */
-/* { dg-do assemble {target sh*-*-*}} */
-/* { dg-options "" } */
-/* { dg-skip-if "" { "sh*-*-*" } "*" "-m2a -m2a-nofpu -m2a-single -m2a-single-only" } */
-/* { dg-final { scan-assembler-times "jsr/n\\t@@\\(40,tbr\\)" 1} } */
-/* { dg-final { scan-assembler-times "jsr/n\\t@@\\(72,tbr\\)" 1} } */
-
-extern void foo1 (void) __attribute__ ((function_vector(10)));
-extern void foo2 (void);
-extern int bar1 (void) __attribute__ ((function_vector(18)));
-extern int bar2 (void);
-
-int
-bar()
-{
- foo1();
- foo2();
-
- bar1();
- bar2();
-}