aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/stuct.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/stuct.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/stuct.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/stuct.c b/gcc/testsuite/gcc.c-torture/unsorted/stuct.c
deleted file mode 100644
index deb838d8099..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/stuct.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifdef STACK_SIZE
-#define SIZE STACK_SIZE / 8
-#else
-#define SIZE 10000000
-#endif
-
-struct foo
-{
- int a, b, c;
- int arr[SIZE];
-};
-
-struct foo s, ss;
-
-main ()
-{
-
- s.b = 2;
- s.c = 3;
- ss.b = 2;
- ss.c = 3;
-}