aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/86.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/86.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/86.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/86.c b/gcc/testsuite/gcc.c-torture/unsorted/86.c
deleted file mode 100644
index deea85ee2f4..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/86.c
+++ /dev/null
@@ -1,19 +0,0 @@
-m32 (a)
- int *a;
-{
- a[1] = a[0];
-}
-
-m16 (a)
- short *a;
-{
- a[1] = a[0];
-}
-
-
-m8 (a)
- char *a;
-{
- a[1] = a[0];
-}
-