aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr48343.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr48343.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr48343.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr48343.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr48343.c
deleted file mode 100644
index e56b3a3da..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr48343.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* PR debug/48343 */
-/* { dg-do compile } */
-/* { dg-options "-fcompare-debug" } */
-
-void foo (unsigned char *, unsigned char *);
-
-void
-test (unsigned int x, int y)
-{
- unsigned int i, j = 0, k;
- unsigned char s[256], t[64];
- foo (s, t);
- t[0] = y;
- for (i = 0; i < 256; i++)
- {
- j = (j + s[i] + t[i % x]) & 0xff;
- k = i; i = j; j = k;
- }
-}