diff options
Diffstat (limited to 'gcc/testsuite/consistency.vlad/layout/s-int-zf-longlong.c')
-rwxr-xr-x | gcc/testsuite/consistency.vlad/layout/s-int-zf-longlong.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/consistency.vlad/layout/s-int-zf-longlong.c b/gcc/testsuite/consistency.vlad/layout/s-int-zf-longlong.c new file mode 100755 index 0000000..7d80a90 --- /dev/null +++ b/gcc/testsuite/consistency.vlad/layout/s-int-zf-longlong.c @@ -0,0 +1,18 @@ +#include <stdio.h> + +static struct sss{ + int f; + long long :0; + int i; +} sss; + +#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16) + +int main (void) { + printf ("+++longlong zerofield inside struct starting with int:\n"); + printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss)); + printf ("offset-int=%d,offset-last=%d,\nalign-int=%d,align-last=%d\n", + _offsetof (struct sss, f), _offsetof (struct sss, i), + __alignof__ (sss.f), __alignof__ (sss.i)); + return 0; +} |