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