blob: 9ce5c6f4ac33c737bc64f5cb1f37229abb393353 [file] [log] [blame]
#include <stdio.h>
static struct sss{
long double f;
long :0;
int i;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++long zerofield inside struct starting with longdouble:\n");
printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss));
printf ("offset-longdouble=%d,offset-last=%d,\nalign-longdouble=%d,align-last=%d\n",
_offsetof (struct sss, f), _offsetof (struct sss, i),
__alignof__ (sss.f), __alignof__ (sss.i));
return 0;
}