aboutsummaryrefslogtreecommitdiff
path: root/tests/main.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-03-20 18:53:47 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit5df7f92e715ba764ee57f65d78e73111492bb64c (patch)
tree87e25089674432d43d1ed8edad5c4c6ca3fd72b1 /tests/main.c
parent071bdd4d6facb8786f089882d53c127e6163e3ce (diff)
Add pub keyword, more import stuff, optimize hash map
Hash map now stores hash of keys to reduce the number of hash operations. Positive: faster insert/get. Negative: more space required (to store usize hash).
Diffstat (limited to 'tests/main.c')
-rw-r--r--tests/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/main.c b/tests/main.c
index 2b57bcf..0dfd878 100644
--- a/tests/main.c
+++ b/tests/main.c
@@ -41,6 +41,7 @@ static CHECK_RESULT int test_hash_map() {
return 0;
}
+/* TODO: Restrict variables in global scope to const */
int main() {
amal_compiler compiler;
FileScopeReference *file_scope;