diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2015-12-30 15:33:33 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2015-12-30 15:33:33 +0800 |
commit | 463be4aa241f9c9b8453ba46a89ce5d67995c55b (patch) | |
tree | 8575ce34c28d0cc10a4b3a98ced553a504e7c7d4 /src/code-generation.c | |
parent | 0c0c7ab0850b6803c377ad7150305870d75bf3c0 (diff) | |
download | compiler2015-463be4aa241f9c9b8453ba46a89ce5d67995c55b.tar.gz compiler2015-463be4aa241f9c9b8453ba46a89ce5d67995c55b.tar.zst compiler2015-463be4aa241f9c9b8453ba46a89ce5d67995c55b.zip |
Drop any_error from state and add asm_output to state
Diffstat (limited to 'src/code-generation.c')
-rw-r--r-- | src/code-generation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code-generation.c b/src/code-generation.c index c0c5874..294389f 100644 --- a/src/code-generation.c +++ b/src/code-generation.c @@ -8,6 +8,6 @@ #include <stdio.h> #include <stdlib.h> -void ccmmc_code_generation(CcmmcAst *root, CcmmcSymbolTable *table, FILE *asm_output) +void ccmmc_code_generation(CcmmcState *state) { } |