aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/t.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/t.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/t.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/t.c b/gcc/testsuite/gcc.c-torture/unsorted/t.c
deleted file mode 100644
index 48095e7c38b..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/t.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#define B 95
-
-foo (a, b, p)
- unsigned a, b;
- int *p;
-{
- p[1] = a % B;
- p[0] = a / B;
-}
-
-bar (a, b, p)
- unsigned a, b;
- int *p;
-{
- p[0] = a / B;
- p[1] = a % B;
-}
-