diff options
author | Adam NAILI | 2018-06-05 21:05:22 +0200 |
---|---|---|
committer | Adam NAILI | 2018-06-05 21:05:22 +0200 |
commit | 56e31e3b8a1a569f42140547ffda5a91ef451b47 (patch) | |
tree | ab7412ef90736f1ccc386670b024b48b593f34b0 /src/symbol_table.h | |
parent | a67cd40065f790383776ec3fffa364f6443f7ee7 (diff) | |
download | tpc-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.h | 1 |
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); | |||
55 | int loc_lookup(const char name[]); | 55 | int loc_lookup(const char name[]); |
56 | int loc_get_addr(const char name[]); | 56 | int loc_get_addr(const char name[]); |
57 | void loc_display_table(); | 57 | void loc_display_table(); |
58 | void loc_clean_table(); | ||
58 | void check_expected_type(int type_to_check, int type_expected); | 59 | void check_expected_type(int type_to_check, int type_expected); |
59 | 60 | ||
60 | #endif | 61 | #endif |