aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/20030627-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/20030627-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/20030627-1.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/20030627-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/20030627-1.c
deleted file mode 100644
index 4135f71e3..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/20030627-1.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* This tests whether non-offsettable memory operands are reloaded
- correctly in certain corner cases on s390 targets. */
-/* { dg-do compile } */
-/* { dg-options "-std=gnu89" } */
-
-void test_inout (char *bd, int xd, char *bs, int xs)
-{
- *(long long *)(bd + xd + 4093) = *(long long *)(bs + xs + 4093);
-}
-
-void test_in (char *bd, int xd, char *bs, int xs)
-{
- *(long long *)(bd + xd) = *(long long *)(bs + xs + 4093);
-}
-
-void test_out (char *bd, int xd, char *bs, int xs)
-{
- *(long long *)(bd + xd + 4093) = *(long long *)(bs + xs);
-}
-