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