aboutsummaryrefslogtreecommitdiff
path: root/include/program.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/program.h')
-rw-r--r--include/program.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/program.h b/include/program.h
index dc65cb7..9104898 100644
--- a/include/program.h
+++ b/include/program.h
@@ -68,7 +68,7 @@ typedef struct {
ArenaAllocator allocator; /* Owned. Used by @extern_funcs_map */
HashMapType(BufferView, ProgramExternFunc) extern_funcs_map;
- /* key=((func_index<<32)&funcs_start), value=Buffer<u32=current_code_index> */
+ /* key=((func_index<<32)|funcs_start), value=Buffer<u32=current_code_index> */
HashMapType(u64, Buffer) deferred_func_calls;
i8 return_values_stack[AMAL_PROGRAM_MAX_RETURN_VALUES];
int return_value_index;