Move support/lib into lib/Support
[oota-llvm.git] / support / tools / Burg / operator.c
diff --git a/support/tools/Burg/operator.c b/support/tools/Burg/operator.c
deleted file mode 100644 (file)
index a6df9e3..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-char rcsid_operator[] = "$Id$";
-
-#include "b.h"
-#include <stdio.h>
-
-int max_arity = -1;
-
-List operators;
-List leaves;
-
-Operator
-newOperator(name, num, arity) char *name; OperatorNum num; ArityNum arity;
-{
-       Operator op;
-
-       assert(arity <= MAX_ARITY);
-       op = (Operator) zalloc(sizeof(struct operator));
-       assert(op);
-       op->name = name;
-       op->num = num;
-       op->arity = arity;
-
-       operators = newList(op, operators);
-
-       return op;
-}
-
-void
-dumpOperator_s(op) Operator op;
-{
-       printf("Op: %s(%d)=%d\n", op->name, op->arity, op->num);
-}
-
-void
-dumpOperator(op, full) Operator op; int full;
-{
-       dumpOperator_s(op);
-       if (full) {
-               dumpTable(op->table, 0);
-       }
-}
-
-void
-dumpOperator_l(op) Operator op;
-{
-       dumpOperator(op, 1);
-}
-