From cdc6e2c50f96119bdc4c1205ff5901ca82ec8357 Mon Sep 17 00:00:00 2001 From: camthesaxman Date: Wed, 29 Jan 2020 18:17:43 -0600 Subject: add old compiler with ARM support --- .../consistency.vlad/layout/s-pointer-zf-long.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 gcc_arm/testsuite/consistency.vlad/layout/s-pointer-zf-long.c (limited to 'gcc_arm/testsuite/consistency.vlad/layout/s-pointer-zf-long.c') diff --git a/gcc_arm/testsuite/consistency.vlad/layout/s-pointer-zf-long.c b/gcc_arm/testsuite/consistency.vlad/layout/s-pointer-zf-long.c new file mode 100755 index 0000000..1ab4e06 --- /dev/null +++ b/gcc_arm/testsuite/consistency.vlad/layout/s-pointer-zf-long.c @@ -0,0 +1,18 @@ +#include + +static struct sss{ + char * 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 pointer:\n"); + printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss)); + printf ("offset-pointer=%d,offset-last=%d,\nalign-pointer=%d,align-last=%d\n", + _offsetof (struct sss, f), _offsetof (struct sss, i), + __alignof__ (sss.f), __alignof__ (sss.i)); + return 0; +} -- cgit v1.2.3