]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/compile/20010610-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20010610-1.c
diff --git a/gcc/testsuite/gcc.c-torture/compile/20010610-1.c b/gcc/testsuite/gcc.c-torture/compile/20010610-1.c
deleted file mode 100644 (file)
index ee8e243..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Origin: Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
-
-   Boolean types were not accepted as array sizes nor as switch
-   quantities.  */
-
-#include <stdbool.h>
-
-int
-main(void)
-{
-  bool arr[(bool)1];
-  
-  switch (arr[0])
-    {
-    default:;
-    }
-
-  return 0;
-}