diff options
author | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
commit | be8b04496302184c6e8f04d6179f9c3afc50aeb6 (patch) | |
tree | 726e2468c0c07add773c0dbd86ab6386844259ae /gcc/testsuite/consistency.vlad/layout/s-pointer-a-float.c |
initial commit
Diffstat (limited to 'gcc/testsuite/consistency.vlad/layout/s-pointer-a-float.c')
-rwxr-xr-x | gcc/testsuite/consistency.vlad/layout/s-pointer-a-float.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/consistency.vlad/layout/s-pointer-a-float.c b/gcc/testsuite/consistency.vlad/layout/s-pointer-a-float.c new file mode 100755 index 0000000..068902c --- /dev/null +++ b/gcc/testsuite/consistency.vlad/layout/s-pointer-a-float.c @@ -0,0 +1,21 @@ +#include <stdio.h> + +static struct sss{ + char * f; + float a[10]; +} sss; + +#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16) + +int main (void) { + printf ("++++Array of float in struct starting with pointer:\n"); + printf ("size=%d,align=%d\n", + sizeof (sss), __alignof__ (sss)); + printf ("offset-pointer=%d,offset-arrayof-float=%d,\nalign-pointer=%d,align-arrayof-float=%d\n", + _offsetof (struct sss, f), _offsetof (struct sss, a), + __alignof__ (sss.f), __alignof__ (sss.a)); + printf ("offset-float-a[5]=%d,align-float-a[5]=%d\n", + _offsetof (struct sss, a[5]), + __alignof__ (sss.a[5])); + return 0; +} |