aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-20 14:13:45 +0200
committerMarvin Borner2023-05-20 14:13:45 +0200
commit8499010b91a2c7496d6af74cce35a6b4e0378633 (patch)
treec57a6a6fb12f4653928662e93d4470453068e361 /src/parse.c
parentf640ceee89836b56ac95c4eb1b0a43d1171c3354 (diff)
Added testing flag
still not able to find the 8cc bug but idc because I tested it with many programs and it probably won't be an issue for now
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/parse.c b/src/parse.c
index 9a8af45..f6e047d 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -120,35 +120,3 @@ void free_bloc(struct bloc_parsed *bloc)
free(bloc->entries);
free(bloc);
}
-
-static struct term *rec_bloc(struct term *term, struct bloc_parsed *bloc)
-{
- switch (term->type) {
- case ABS:
- rec_bloc(term->u.abs.term, bloc);
- break;
- case APP:
- rec_bloc(term->u.app.lhs, bloc);
- rec_bloc(term->u.app.rhs, bloc);
- break;
- case VAR:
- break;
- case REF:
- if (term->u.ref.index >= bloc->length)
- fatal("invalid entry reference\n");
- memcpy(term,
- bloc->entries[bloc->length - term->u.ref.index - 1],
- sizeof(*term));
- break;
- default:
- fatal("invalid type %d\n", term->type);
- return 0;
- }
- return term;
-}
-
-struct term *from_bloc(struct bloc_parsed *bloc)
-{
- struct term *last = bloc->entries[bloc->length - 1];
- return rec_bloc(last, bloc);
-}