aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr24600.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr24600.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr24600.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr24600.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr24600.c
deleted file mode 100644
index 62bb7cad6..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr24600.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* This used to ICE on s390 due to a old-loop bug. */
-
-/* { dg-do compile } */
-/* { dg-options "-O2" } */
-
-char *strcpy (char *dest, const char *src);
-
-void test (char *Line, int len)
-{
- int z;
-
- for (z = 1; z <= len; z++)
- if (Line[z - 1])
- strcpy (Line + z + 1, Line);
-}
-