]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20011214-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20011214-1.c
diff --git a/gcc/testsuite/gcc.dg/20011214-1.c b/gcc/testsuite/gcc.dg/20011214-1.c
deleted file mode 100644 (file)
index 9dea904..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* { dg-do run } */
-
-#define small   __attribute__((mode(QI))) int
-int main()
-{
-  int x, y = 0x400;
-
-  x = (small) y;                                /* { dg-bogus "ignored" } */
-  if (sizeof (small) != sizeof (char))          /* { dg-bogus "ignored" } */
-    abort ();
-  if (sizeof (x) != sizeof (char) && x == y)
-    abort ();
-  return 0;
-}