]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/consistency.vlad/layout/s-longlong-a-longdouble.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / consistency.vlad / layout / s-longlong-a-longdouble.c
diff --git a/gcc/testsuite/consistency.vlad/layout/s-longlong-a-longdouble.c b/gcc/testsuite/consistency.vlad/layout/s-longlong-a-longdouble.c
deleted file mode 100644 (file)
index 20a8b45..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-
-static struct sss{
-  long long f;
-  long double a[10];
-} sss;
-
-#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
-
-int main (void) {
-  printf ("++++Array of longdouble in struct starting with longlong:\n");
-  printf ("size=%d,align=%d\n",
-          sizeof (sss), __alignof__ (sss));
-  printf ("offset-longlong=%d,offset-arrayof-longdouble=%d,\nalign-longlong=%d,align-arrayof-longdouble=%d\n",
-          _offsetof (struct sss, f), _offsetof (struct sss, a),
-          __alignof__ (sss.f), __alignof__ (sss.a));
-  printf ("offset-longdouble-a[5]=%d,align-longdouble-a[5]=%d\n",
-          _offsetof (struct sss, a[5]),
-          __alignof__ (sss.a[5]));
-  return 0;
-}