diff options
| author | 2022-08-05 09:31:06 +0200 | |
|---|---|---|
| committer | 2022-08-05 09:31:06 +0200 | |
| commit | e0630766450d402455d9c8368087f96d8075c07c (patch) | |
| tree | 57c6815ff9c4e4264e39f4643e60e4d0be7c192c /bootstrap/main.c | |
| parent | 9667272414380e2d50113e0a0c6408a02e7c23eb (diff) | |
headers, import
Diffstat (limited to 'bootstrap/main.c')
| -rw-r--r-- | bootstrap/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/main.c b/bootstrap/main.c index 4acf913..95759af 100644 --- a/bootstrap/main.c +++ b/bootstrap/main.c @@ -3,12 +3,12 @@ int main(int argc, char **argv) { struct parser P; - struct transunit tu = {0}; + struct comfile cf = {0}; assert(argc > 1); inittypes(); initparser(&P, argv[1]); - parse(&tu, &P); + parse(&cf, &P); // dumptransunit(&tu); - cgen(stdout, &tu); + cgen(stdout, &cf); } |