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