X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fext%2Falign1.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fext%2Falign1.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=6c960c396de7514b2a5315939aa983d55ede65fa;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.dg/ext/align1.C b/gcc/testsuite/g++.dg/ext/align1.C deleted file mode 100644 index 6c960c39..00000000 --- a/gcc/testsuite/g++.dg/ext/align1.C +++ /dev/null @@ -1,21 +0,0 @@ -// Test that __attribute__ ((aligned)) is preserved. -// The alignment used to be 64 but Cygwin does not -// support an alignment greater than 16 and COFF -// not support an alignment greater than 4. - -extern "C" int printf (const char *, ...); - -typedef float at[4][4] __attribute__ ((aligned)); - -float dummy[4][4][15]; - -static volatile at a1[15]; - -float f1 __attribute__ ((aligned)); - -int -main (void) -{ - printf ("%d %d\n", __alignof (a1), __alignof (f1)); - return (__alignof (a1) < __alignof (f1)); -}