]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/consistency.vlad/layout/a-char.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / consistency.vlad / layout / a-char.c
diff --git a/gcc/testsuite/consistency.vlad/layout/a-char.c b/gcc/testsuite/consistency.vlad/layout/a-char.c
deleted file mode 100644 (file)
index d13d19d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-
-static char a [10];
-static char e [0]; /* GCC only */
-
-int main (void) {
-  printf ("+++Array char:\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;
-}