aboutsummaryrefslogtreecommitdiff
path: root/src/symbol_table.h
diff options
context:
space:
mode:
authorAdam NAILI2018-06-05 21:05:22 +0200
committerAdam NAILI2018-06-05 21:05:22 +0200
commit56e31e3b8a1a569f42140547ffda5a91ef451b47 (patch)
treeab7412ef90736f1ccc386670b024b48b593f34b0 /src/symbol_table.h
parenta67cd40065f790383776ec3fffa364f6443f7ee7 (diff)
downloadtpc-compiler-56e31e3b8a1a569f42140547ffda5a91ef451b47.tar.gz
Fix call of call of functions with parameters
Diffstat (limited to 'src/symbol_table.h')
-rw-r--r--src/symbol_table.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/symbol_table.h b/src/symbol_table.h
index a5dba69..d0ac440 100644
--- a/src/symbol_table.h
+++ b/src/symbol_table.h
@@ -55,6 +55,7 @@ void loc_addVar(const char name[], int type);
55int loc_lookup(const char name[]); 55int loc_lookup(const char name[]);
56int loc_get_addr(const char name[]); 56int loc_get_addr(const char name[]);
57void loc_display_table(); 57void loc_display_table();
58void loc_clean_table();
58void check_expected_type(int type_to_check, int type_expected); 59void check_expected_type(int type_to_check, int type_expected);
59 60
60#endif 61#endif