aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/consistency.vlad/layout/s-longdouble-a-short.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/consistency.vlad/layout/s-longdouble-a-short.c')
-rw-r--r--gcc/testsuite/consistency.vlad/layout/s-longdouble-a-short.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/consistency.vlad/layout/s-longdouble-a-short.c b/gcc/testsuite/consistency.vlad/layout/s-longdouble-a-short.c
deleted file mode 100644
index 802ce2a12ea..00000000000
--- a/gcc/testsuite/consistency.vlad/layout/s-longdouble-a-short.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-
-static struct sss{
- long double f;
- short a[10];
-} sss;
-
-#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
-
-int main (void) {
- printf ("++++Array of short in struct starting with longdouble:\n");
- printf ("size=%d,align=%d\n",
- sizeof (sss), __alignof__ (sss));
- printf ("offset-longdouble=%d,offset-arrayof-short=%d,\nalign-longdouble=%d,align-arrayof-short=%d\n",
- _offsetof (struct sss, f), _offsetof (struct sss, a),
- __alignof__ (sss.f), __alignof__ (sss.a));
- printf ("offset-short-a[5]=%d,align-short-a[5]=%d\n",
- _offsetof (struct sss, a[5]),
- __alignof__ (sss.a[5]));
- return 0;
-}