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