summaryrefslogtreecommitdiff
path: root/gcc/testsuite/consistency.vlad/layout/c-int-1-c-float.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/consistency.vlad/layout/c-int-1-c-float.cpp')
-rwxr-xr-xgcc/testsuite/consistency.vlad/layout/c-int-1-c-float.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/consistency.vlad/layout/c-int-1-c-float.cpp b/gcc/testsuite/consistency.vlad/layout/c-int-1-c-float.cpp
new file mode 100755
index 0000000..3836440
--- /dev/null
+++ b/gcc/testsuite/consistency.vlad/layout/c-int-1-c-float.cpp
@@ -0,0 +1,23 @@
+#include <stdio.h>
+
+class c{
+public:
+ int f;
+};
+
+
+static class sss: public c{
+public:
+ float m;
+} sss;
+
+#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
+
+int main (void) {
+ printf ("++Class with float inhereting class with int:\n");
+ printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss));
+ printf ("offset-int=%d,offset-float=%d,\nalign-int=%d,align-float=%d\n",
+ _offsetof (class sss, f), _offsetof (class sss, m),
+ __alignof__ (sss.f), __alignof__ (sss.m));
+ return 0;
+}