]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/zerolen-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / zerolen-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/zerolen-2.c b/gcc/testsuite/gcc.c-torture/execute/zerolen-2.c
deleted file mode 100644 (file)
index 446e582..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-extern void abort(void);
-
-typedef int word __attribute__((mode(word)));
-
-struct foo
-{
-  word x;
-  word y[0];
-};
-
-int main()
-{
-  if (sizeof(word) != sizeof(struct foo))
-    abort();
-  if (__alignof__(word) != __alignof__(struct foo))
-    abort();
-  return 0;
-}