]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/consistency.vlad/layout/a-double.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / consistency.vlad / layout / a-double.c
diff --git a/gcc/testsuite/consistency.vlad/layout/a-double.c b/gcc/testsuite/consistency.vlad/layout/a-double.c
deleted file mode 100644 (file)
index 0e5aa3c..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-
-static double a [10];
-static double e [0]; /* GCC only */
-
-int main (void) {
-  printf ("+++Array double:\n");
-  printf ("size=%d,align=%d,5th-elem-offset=%d,5th-elem-align=%d\n",
-          sizeof (a), __alignof__ (a),
-          (char *) &a[5] - (char *) a, __alignof__ (a[5]));
-  printf ("size=%d,align=%d,5th-elem-offset=%d,5th-elem-align=%d\n",
-          sizeof (e), __alignof__ (e),
-          (char *) &e[5] - (char *) a, __alignof__ (e[5]));
-  return 0;
-}