aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-09-09 01:28:26 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit7103d3a1df6c7fee6e8efbe3588204d1e869004e (patch)
tree844cb2a1d9a858b31423f4feb1d4792b16327aeb /src
parent16aaaa19a3ef4220726007d3e644ced0c9e06513 (diff)
Add code example to README
Diffstat (limited to 'src')
-rw-r--r--src/bytecode/bytecode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bytecode/bytecode.c b/src/bytecode/bytecode.c
index 0ee066c..2c43471 100644
--- a/src/bytecode/bytecode.c
+++ b/src/bytecode/bytecode.c
@@ -191,7 +191,6 @@ static void add_functions(BytecodeCompilerContext *self) {
assert(sizeof(BytecodeHeaderFunction) == 22);
self->bytecode->funcs_index = instructions->size;
- amal_log_debug("func index: %d", self->bytecode->funcs_index);
throw_if_error(buffer_expand(instructions, sizeof(u16) + sizeof(u32) + funcs_size));
throw_if_error(buffer_append(instructions, &ssa->func_counter, sizeof(u16)));
throw_if_error(buffer_append(instructions, &funcs_size, sizeof(u32)));