]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/consistency.vlad/layout/c-float-1-c-short.cpp
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / consistency.vlad / layout / c-float-1-c-short.cpp
diff --git a/gcc/testsuite/consistency.vlad/layout/c-float-1-c-short.cpp b/gcc/testsuite/consistency.vlad/layout/c-float-1-c-short.cpp
deleted file mode 100644 (file)
index 23be40f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <stdio.h>
-
-class c{
-public:
-  float f;
-};
-
-
-static class sss: public c{
-public:
-  short m;
-} sss;
-
-#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
-
-int main (void) {
-  printf ("++Class with short inhereting class with float:\n");
-  printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss));
-  printf ("offset-float=%d,offset-short=%d,\nalign-float=%d,align-short=%d\n",
-          _offsetof (class sss, f), _offsetof (class sss, m),
-          __alignof__ (sss.f), __alignof__ (sss.m));
-  return 0;
-}