aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-01 01:07:51 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-01 01:07:51 +0800
commit38dd138627bf6de02734d00e5df841c25a53855e (patch)
tree7fc2229d47b763c5eafb5121d05f327399318e9d /main.c
parent09bd5680d97c5ef36158938c8d65eec455263557 (diff)
'&' operator
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 08655f0..91bcc17 100644
--- a/main.c
+++ b/main.c
@@ -55,7 +55,8 @@ void print_sem() {
void print_ssa() {
cibic_init();
yyparse();
- ssa_generate(semantics_check(ast_root));
+ semantics_check(ast_root);
+ ssa_generate();
}
void print_help() {