X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fconsistency.vlad%2Flayout%2Fs-float-zf-int.c;fp=gcc%2Ftestsuite%2Fconsistency.vlad%2Flayout%2Fs-float-zf-int.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=3f7cc5b2921bd7d2cf1947c3a8e454408e86875a;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/consistency.vlad/layout/s-float-zf-int.c b/gcc/testsuite/consistency.vlad/layout/s-float-zf-int.c deleted file mode 100644 index 3f7cc5b2..00000000 --- a/gcc/testsuite/consistency.vlad/layout/s-float-zf-int.c +++ /dev/null @@ -1,18 +0,0 @@ -#include - -static struct sss{ - float f; - int :0; - int i; -} sss; - -#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16) - -int main (void) { - printf ("+++int zerofield inside struct starting with float:\n"); - printf ("size=%d,align=%d\n", sizeof (sss), __alignof__ (sss)); - printf ("offset-float=%d,offset-last=%d,\nalign-float=%d,align-last=%d\n", - _offsetof (struct sss, f), _offsetof (struct sss, i), - __alignof__ (sss.f), __alignof__ (sss.i)); - return 0; -}