2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / consistency.vlad / layout / s-double-wchar_t.c
blobcee104f1d590d2b73cef002c10c2db8b37da7934
1 #include <stdio.h>
2 #include <stddef.h>
4 static struct sss{
5 double f;
6 wchar_t snd;
7 } sss;
9 #define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
11 int main (void) {
12 printf ("+++Struct double-wchar_t:\n");
13 printf ("size=%d,align=%d,offset-double=%d,offset-wchar_t=%d,\nalign-double=%d,align-wchar_t=%d\n",
14 sizeof (sss), __alignof__ (sss),
15 _offsetof (struct sss, f), _offsetof (struct sss, snd),
16 __alignof__ (sss.f), __alignof__ (sss.snd));
17 return 0;