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