aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/931102-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/931102-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/931102-2.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/931102-2.c b/gcc/testsuite/gcc.c-torture/compile/931102-2.c
deleted file mode 100644
index f39b271645d..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/931102-2.c
+++ /dev/null
@@ -1,21 +0,0 @@
-typedef struct {
- int a;
-} VCR;
-
-typedef struct {
- VCR vcr[8];
-} VCRC;
-
-typedef struct {
- char vcr;
-} OWN;
-
-OWN Own[16];
-
-f (x, own)
- VCRC *x;
- OWN *own;
-{
- x[own->vcr / 8].vcr[own->vcr % 8].a--;
- x[own->vcr / 8].vcr[own->vcr % 8].a = x[own->vcr / 8].vcr[own->vcr % 8].a;
-}