diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2019-08-03 21:40:54 -0400 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2019-08-03 21:40:54 -0400 |
commit | 9c6c1af62993bdb2474ddde4384215f95fede85f (patch) | |
tree | a79de9569782288010576ce7d6eef9ccb01dbb23 | |
parent | 6c559b49b2203c4815d652ab4501099be652f8d3 (diff) |
Fix print_tree placement in parse tree
-rw-r--r-- | pc.y | 3 | ||||
-rw-r--r-- | tree.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -92,6 +92,7 @@ program compound_statement '.' { + print_tree($9); } ; @@ -157,6 +158,7 @@ sub_prog_declaration sub_prog_declarations compound_statement { + print_tree($4); pop_scope(&cur_scope); } ; @@ -201,7 +203,6 @@ compound_statement :BEG opt_statements END { $$ = $2; - print_tree($$); } ; @@ -86,6 +86,8 @@ ptree *t; fprintf(stderr, "\n\nTREE\n" "==========================================================\n"); aux_tree_print(t, 0); + fprintf(stderr, + "**********************************************************\n"); return; } |