From 003a6cc717b12756c7f2d4ff2c757ccb8297c15c Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 30 Jan 2020 23:37:56 -0800 Subject: driver: Allow preprocessing C headers --- driver.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/driver.c b/driver.c index 0d9c897..86b3df3 100644 --- a/driver.c +++ b/driver.c @@ -22,6 +22,7 @@ enum filetype { ASM, /* assembly source */ ASMPP, /* assembly source requiring preprocessing */ C, /* C source */ + CHDR, /* C header */ CPPOUT, /* preprocessed C source */ OBJ, /* object file */ QBE, /* QBE IL */ @@ -89,6 +90,8 @@ detectfiletype(const char *name) ++dot; if (strcmp(dot, "c") == 0) return C; + if (strcmp(dot, "h") == 0) + return CHDR; if (strcmp(dot, "i") == 0) return CPPOUT; if (strcmp(dot, "qbe") == 0) @@ -409,6 +412,7 @@ main(int argc, char *argv[]) case ASM: input->stages = 1<stages = 1<stages = 1<stages = 1<stages = 1<stages = 1<stages = 1<stages & 1 << last)) + continue; /* only run up through the last stage */ input->stages &= (1 << last + 1) - 1; buildobj(input, output); -- cgit v1.2.3