]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/enum-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / enum-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/enum-1.c b/gcc/testsuite/gcc.c-torture/execute/enum-1.c
deleted file mode 100644 (file)
index 381e354..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-typedef enum
-{
-  END = -1,
-  EMPTY = (1 << 8 ) ,
-  BACKREF,
-  BEGLINE,
-  ENDLINE,
-  BEGWORD,
-  ENDWORD,
-  LIMWORD,
-  NOTLIMWORD,
-  QMARK,
-  STAR,
-  PLUS,
-  REPMN,
-  CAT,
-  OR,
-  ORTOP,
-  LPAREN,
-  RPAREN,
-  CSET
-} token;
-
-static token tok;
-
-static int
-atom ()
-{
-  if ((tok >= 0 && tok < (1 << 8 ) ) || tok >= CSET || tok == BACKREF
-      || tok == BEGLINE || tok == ENDLINE || tok == BEGWORD
-      || tok == ENDWORD || tok == LIMWORD || tok == NOTLIMWORD)
-    return 1;
-  else
-    return 0;
-}
-
-main ()
-{
-  tok = 0;
-  if (atom () != 1)
-    abort ();
-  exit (0);
-}