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