diff options
Diffstat (limited to 'gcc/testsuite/consistency.vlad/layout/s-char-s-longdouble.c')
-rw-r--r-- | gcc/testsuite/consistency.vlad/layout/s-char-s-longdouble.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/consistency.vlad/layout/s-char-s-longdouble.c b/gcc/testsuite/consistency.vlad/layout/s-char-s-longdouble.c new file mode 100644 index 00000000000..3f02e3b241b --- /dev/null +++ b/gcc/testsuite/consistency.vlad/layout/s-char-s-longdouble.c @@ -0,0 +1,17 @@ +#include <stdio.h> + +static struct sss{ + char f; + struct {long double m;} snd; +} sss; + +#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16) + +int main (void) { + printf ("+++Struct longdouble inside struct starting with char:\n"); + printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss)); + printf ("offset-char=%d,offset-sss-longdouble=%d,\nalign-char=%d,align-sss-longdouble=%d\n", + _offsetof (struct sss, f), _offsetof (struct sss, snd), + __alignof__ (sss.f), __alignof__ (sss.snd)); + return 0; +} |